From c59068d8b19617e7583b8cc825438504321001ab Mon Sep 17 00:00:00 2001 From: Uno Date: Tue, 13 Jul 2021 05:14:53 +0900 Subject: [PATCH] Add #3 - actuator, configuration processor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 액츄에이터, configuration processor 의존성 추가 * configuration processor: `annotationProcessor`를 사용해야 함 * ConfigurationProperties 클래스의 메타 정보를 .properties 파일과 이어주는 기능 --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index cfd24cc..6b2693b 100644 --- a/build.gradle +++ b/build.gradle @@ -13,9 +13,11 @@ repositories { } dependencies { + implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'org.springframework.boot:spring-boot-properties-migrator' implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation 'org.springframework.boot:spring-boot-starter-test' + annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' } test {