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 | 31 |
Tags
- docker
- java
- 도커이미지
- 11월순위
- 명령어
- analytics4
- ANTIFRAGILE
- docker push
- IntelliJ
- 데이터내보내기
- docker build
- gtihub
- 컬렉션프레임워크
- Python
- git pat
- 애널리틱스4
- codeium
- 자바
- JPQL
- git branch 삭제
- spring
- db종류
- 르세라핌
- 티스토리챌린지
- JPA
- DBMS
- 오블완
- macvlan
- pat발급
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 에러 (0) | 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 |