일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- kubectl
- HLS
- golang
- spring cloud config
- dart
- VSCode
- wireshark
- service
- nginx-media-server
- aws
- Kubernetes
- Java
- docker
- Sysinternals
- Pod
- android studio
- configmap
- Windows10
- ffmpeg
- 행정구역분류
- Flutter
- ebpf
- deployment
- Android
- namespace
- aws cli
- RTMP
- Shell script
- Python
- macos
- Today
- Total
목록Spring (4)
woonizzooni
TL;DR > 구현체 / 참고 소스 https://github.com/woonizzooni/spring-cloud-config-concept > 실행 환경 - RabbitMQ 실행 (Docker 활용) - 로컬저장소 vs GitHub저장소 방식 선택 'GitHub 저장소 & WebHooks 설정' or '로컬저장소 & 'POST /monitor'' 방식 - Config서버, 2개 이상의 Client 실행 (bus활성화) > 동작 확인 - 외부 저장소의 특정 앱의 설정파일 수정 - GitHub 저장소 이용 방식의 경우 자동으로 특정 앱의 설정 갱신이 이뤄지는지 확인 - 로컬 방식의 경우 Config서버로 'POST /monitor' 요청 후 특정 앱의 설정 갱신이 이뤄지는지 확인 Spring Cloud B..
Spring Cloud Config https://spring.io/projects/spring-cloud-config https://spring.io/projects/spring-cloud-config#learn https://spring.io/projects/spring-cloud-config#samples 0. 구현체 https://github.com/woonizzooni/spring-cloud-config-concept cloud-config-server cloud-config-client-customer-service cloud-config-client-product-service 1. 앱 구현 & 설정 관련 키워드(?) [Server] build.gradle implementation 'org..
Spring Cloud Config https://spring.io/projects/spring-cloud-config Spring Projects The Spring portfolio has many projects, including Spring Framework, Spring IO Platform, Spring Cloud, Spring Boot, Spring Data, Spring Security... spring.io [참고 : 샘플코드는 널려 있음 ] Spring Cloud Config Server(이하 Server) 실행 상태에서 Spring Cloud Config Client(이하 Client)를 실행해보면 "Fetching config from server at : http://localh..
TL; DR 1. loopback IP와 공인망으로 나가는 인터페이스 IP를 제외한 나머지 IP를 갖는 활성화된 모든 네트워크 인터페이스의 IP를 hosts파일에 기록하라. ex) 127.0.0.1 localhost local Local ::1 localhost 192.168.10.3 MYDESKTOP 192.168.56.1 MYDESKTOP-VIRTUALBOX-SWITCH-GW 192.168.99.1 MYDESKTOP-VIRTUALBOX-NAT-GW 2. properties or yml에 spring.cloud.inetutils.ignoredInterfaces에 '1'에 해당하는 인터페이스 장치 이름에 matches될 수 있는 regex를 등록하라. ex) Windows10 예. spring: clou..