본문 바로가기
🌿 Spring

[Error] Spring Boot Configuration Annotation Processor not configured

by nitronium102 2021. 7. 7.

@ConfigurationProperties를 사용하는데 갑자기 위에 알림이 떴다. 

우측에 open documents를 눌러서 문서를 보려고 했으나 이상하게 접속을 못하길래 그냥 공식문서 뒤져서 찾아왔다. 

 

https://docs.spring.io/spring-boot/docs/2.5.2/reference/html/configuration-metadata.html#configuration-metadata.annotation-processor.configuring

 

Configuration Metadata

Configuration metadata files are located inside jars under META-INF/spring-configuration-metadata.json. They use a JSON format with items categorized under either “groups” or “properties” and additional values hints categorized under "hints", as sh

docs.spring.io

 

gradle의 경우에는 아래 코드를 dependency에 추가하면 된다

dependencies {
    annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
}

 

댓글