Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- mysql
- mssql
- Javascript
- PostgreSQL
- java
- IntelliJ
- Python
- 네트워크
- 오블완
- 후기
- docker
- oracle
- 리눅스
- 개발자
- 명령어
- AI
- 책추천
- 티스토리챌린지
- MariaDB
- react
- 책
- Linux
- pandas
- 독서
- spring
- 개발
- SQL
- git
- 자바
- DBMS
Archives
- Today
- Total
hanker
Intellij - Spring Boot Configuration Annotation Processor not configured Error 본문
SPRING/SPRING-ERROR
Intellij - Spring Boot Configuration Annotation Processor not configured Error
hanker 2021. 4. 18. 22:21반응형
@ConfigurationProperties 어노테이션 사용중 갑작스러운 빨간알림이 생겼다.

우측에 보면 Open Documentation이라고 보이는데 클릭하면 docs.spring.io 사이트로 이동된다.

어떻게 처리할지 친절하게 알려준다.
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
gradle.build
dependencies {
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
}
적용하고 오류가 안사라지길래 File - Invalidate Caches 클릭해서 재실행 했더니 깔끔하게 사라졌다.
반응형
'SPRING > SPRING-ERROR' 카테고리의 다른 글
| Spring Error - Cannot resolve method 'of' in 'List' (1) | 2021.05.08 |
|---|---|
| SpringError - java.lang.ArrayIndexOutOfBoundsException 에러 (1) | 2021.04.29 |
| Spring h2-console 접속 안될때 (403 Error) (0) | 2021.04.17 |
| Cannot resolve MVC view ... 404 Error (0) | 2021.04.01 |
| java.lang.NoClassDefFoundError: ch/qos/logback/classic/spi/ThrowableProxy 에러 (0) | 2021.03.31 |