Health-Genie
[error] @Value Cannot find method 'value'
j9972
2023. 11. 29. 16:44
728x90
문제 상황
@Value 에 "메서드 'value'을(를) 찾을 수 없습니다" 이런 에러가 납니다
원인
import 한 value이 값이 lombok으로 되어 있는 것이 문제다
해결 방법
롬복이 아니라 springframework의 애노테이션을 사용해야한다
import org.springframework.beans.factory.annotation.Value;