반응형
상황
Properties정보를 읽어오기 위해 Intellij에서 spring boot @ConfigurationProperties(prefix = "app")를 추가하면서 오류가 발생했습니다.
문제 파악
Intellij 2017.02 버전과 gradle 4.1 버전이 업데이트 되면서 필수적으로 추가해야 하는 라이브러리가 생겼다고 합니다.
해결 방법
maven
dependencies { annotationProcessor group: 'org.springframework.boot', name: 'spring-boot-configuration-processor'}
gradle
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
추가 후 에러는 없어졌으나 위처럼 "rerun spring boot configuration annotation processor to update grenerated metadata" 에러가 난다면 Intellij의 캐시를 다 지우고 재시작하면 됩니다.
반응형
'개발(합니다) > 시나브로(이슈)' 카테고리의 다른 글
[Intellij] java와 gradle 버전 문제 (0) | 2021.04.20 |
---|---|
[selenium] Command failed to close cleanly. Destroying forcefully (v2) (0) | 2021.04.19 |
[Mysql] You are using safe update mode (0) | 2021.04.13 |
[Liquibase] class java.time.LocalDateTime cannot be cast to class java.lang.String (0) | 2021.04.12 |
[selenium] element is not attached to the page document (0) | 2021.03.24 |