Spring boot Caused by: java.lang.Error: Unresolved compilation problem: Value cannot be resolved to a type
2024. 12. 29. 19:58ㆍJava/Spring Boot
@Value 어노테이션을 인식하지 못하는 경우 발생함
STS에서 자동으로 import를 찾지 못해서, 수동으로 import를 넣고 실행하면 에러 발생함
pom.xml에 아래 내용 추가해서 해결함
<!-- Configuration Processor for annotations like @Value -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
'Java > Spring Boot' 카테고리의 다른 글
Spring boot bean이 초기화 된 이후 호출 없이 최초로 작동하기 (0) | 2024.12.29 |
---|---|
Spring boot 로그에 X-Forwarded-For를 통해서 client IP 기록하기 (0) | 2024.12.29 |
Spring boot java.lang.IllegalStateException: No primary or single unique constructor found for interface javax.servlet.http.HttpServletRequest (1) | 2024.12.28 |
Spring boot 외부 디렉토리를 static으로 인식하기 (0) | 2024.12.27 |
Spring boot 업로드 파일명 중복 피하기 (0) | 2024.12.26 |