일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 boot http client
- MySQL
- <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>
- sidecar patern
- tracing tool
- spring boot 2.0 ssl
- Spring boot
- spring boot jks
- kubernates
- java static resources
- spring cloud load balancer
- spring boot hot swapping
- <iframe src="http://erea.tistory.com/attachment/cfile21.uf@997995485B2F785A3292EE.svg"></iframe>
- redis ha
- Istio
- Service Mesh
- Spring Cloud Config
- spring boot ssl verify skip
- spring cloud api gateway
- jpa auto increment
- msa 4.0
- high availabillty
- spring boot ssl
- redis cluster
- spring cloud zuul
- sidecar
- Distributed Tracing System
- intelij devtools
- Spring Cloud Bus
- intelij spring boot devtools
- Today
- Total
목록dev (15)
erea
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..
hibernate 4버젼 @Id @GeneratedValue(strategy=GenerationType.AUTO) hibernate 5버전 @id @GeneratedValue( strategy= GenerationType.AUTO, generator="native" ) @GenericGenerator( name = "native", strategy = "native"
내부 테스트서버나 로컬에서 ssl 통신을 할때 유용하다. httpClientConfig.java@Configuration public class HttpClientConfig { @Bean public RestTemplate restTemplate() throws KeyStoreException, NoSuchAlgorithmException, KeyManagementException { TrustStrategy acceptingTrustStrategy = (X509Certificate[] chain, String authType) -> true; SSLContext sslContext = org.apache.http.ssl.SSLContexts.custom() .loadTrustMaterial(null,..
Spring bootSpring boot란?Spring Boot는 내장된 웹 애플리케이션 서버(Tomcat, Jetty), 의존성을 손쉽게 관리할 수 있는 스타터 POM(Project Object Model), 설정의 표준화와 자동화 등으로 웹 애플리케이션의 개발과 운영을 이전보다 쉽게 할 수 있게 합니다.Spring boot 장점1. 자주사용하는 프로젝트 조합을 미리 만들어놨습니다.일일히 라이브러리를 찾으면서 추가해줄필요없이 spring-boot-starter-web을 Maven 설정만해주면 관련라이브러리를 받아옵니다. 2. 설정을 자동으로 수행합니다.@Enableautoconfiguratio 어노테이션의 같은경우 자동설정해주는 녀석으로 스프링부트의 마법이라고 불리웁니다.비슷한 어노테이션으로 @Spri..
device매퍼가 단독으로 업데이트되지않음 Transaction check error: file /usr/lib/systemd/system/blk-availability.service from install of device-mapper-7:1.02.107-5.el7_2.5.x86_64 conflicts with file from package lvm2-7:2.02.105-14.el7.x86_64 file /usr/sbin/blkdeactivate from install of device-mapper-7:1.02.107-5.el7_2.5.x86_64 conflicts with file from package lvm2-7:2.02.105-14.el7.x86_64 file /usr/share/man/man8..