일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Spring Cloud Config
- high availabillty
- Spring boot
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect x="10" y="10" height="100" width="100" style="stroke:#ff0000; fill: #0000ff"/> </svg>
- intelij devtools
- java static resources
- MySQL
- spring boot ssl verify skip
- spring cloud api gateway
- Distributed Tracing System
- sidecar patern
- tracing tool
- redis cluster
- spring boot 2.0 ssl
- jpa auto increment
- <iframe src="http://erea.tistory.com/attachment/cfile21.uf@997995485B2F785A3292EE.svg"></iframe>
- spring cloud load balancer
- redis ha
- spring boot hot swapping
- Service Mesh
- Spring Cloud Bus
- spring boot http client
- spring boot ssl
- kubernates
- Istio
- spring boot jks
- sidecar
- msa 4.0
- spring cloud zuul
- intelij spring boot devtools
- Today
- Total
erea
docker로 centos7 이미지를 빌드하다보면 시스템권한이 없어서 답답한경우가 많다 Failed to get D-Bus connection: No connection to service manager. 이런 메시지... 물론 stage나 production환경에서의 권한은 어느정도 제약을 두고 사용해야 겠지만 개발자환경에서는 시스템권한은 당연히 넣어주는것이 좋다. docker run --privileged=true -p 80:80 -v %cd%/:/var/www/html -v /etc/localtime:/etc/localtime --restart=always -privileged=true -d -it centos:7 /usr/sbin/init 위와 같이 sbin을 넣어주게되면 시스템권한을 획득하게된다..
OverviewSpring Cloud Config는 분산 시스템에서 외부화 된 구성에 대한 서버 및 클라이언트 측 지원을 제공합니다. 구성 서버를 사용하면 모든 환경에서 응용 프로그램의 외부 속성을 중앙에서 관리 할 수 있습니다. 클라이언트와 서버의 개념은 Spring Environment과 동일하게 매핑됩니다.PropertySource추상화를 통해 Spring 애플리케이션에 매우 잘 어울리지만 모든 언어로 실행되는 모든 애플리케이션에서 사용할 수 있습니다. 애플리케이션이 개발 파이프 라인을 통해 개발에서 테스트 및 프로덕션 환경으로 이동하면 해당 환경 간의 구성을 관리 할 수 있으며 마이그레이션 할 때 실행하는 데 필요한 모든 기능을 애플리케이션에 적용 할 수 있습니다. 서버 스토리지 백엔드의 ..
spring에서 autowired를 통해 setter di를 하면 inteliJ warning에always use constructor based dependency injection in your beans. Always use assertions for mandatory dependencies이런 메시지가 뜰때가 있다. Since Boot 1.4 @Autowired has been optional on constructors. You can just tag the constructor with @Autowired if you want to be explicit about it. Generally speaking you should favour Constructor > Setter > Field inj..