====== SpringBoot 1.5 ====== * [[https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.5-Release-Notes|Spring Boot 1.5 Release Notes · spring-projects/spring-boot Wiki]] ===== DataSource @Qualifer 작동 안하는 버그 ===== * multiple datasource 사용시 각 데이터소스를 인젝션 받는쪽에 ''@Qualifer''를 붙였으나 올바로 인식하지 못하는 문제 발생. 1.5에서. * [[https://stackoverflow.com/questions/44757388/why-qualifier-not-work|spring boot - Why @Qualifier not work - Stack Overflow]] * 원인은, ''DataSourceInitializer'' 때문이며 이게 어떤 데이터소스를 선택할지 몰라서 오류 발생. 꺼버리면 된다. spring.datasource.initialize=false