써먹는 웹개발

[Java] non static field '변수명' cannot be referenced from a static context 해결방법 본문

웹개발/Java & Jsp

[Java] non static field '변수명' cannot be referenced from a static context 해결방법

kmhan 2021. 10. 18. 13:47


728x90
반응형

에러 문구 : non static field cannot be referenced from a static context

원인 : 사용하는 메서드가 static으로 되어있음

해결방법 : @Value의 변수도 static으로 변경

 

1
2
3
4
5
@Service
...
 
@Value("${properties.image}")
private Static imagePath;
cs
728x90
반응형


Comments