@ConfigurationProperties
-
@ConfigurationProperties, @EnableConfigurationProperties개발/Spring Boot 2020. 5. 15. 10:44
maven dependency 추가 org.springframework.boot spring-boot-configuration-processor true 준비물 1. application.properties or application.yml 2. properties의 값을 binding 받을 TestVO Class 준비 - @ConfigurationProperties(prefix="test")를 통해 test로 지정된 test.key=value로 설정된 값들을 멤버변수에 bind 3. @ConfigurationProperties 설정이 되어있는 Class를 주입받을 수 있도록 Test Class 준비 - @EnableConfigurationProperties(TestVO.class)를 통해 TestVO ..