본문 바로가기
Java, Spring

[IntelliJ] cannot resolve method

by 혀나Lee 2018. 11. 26.

원인

Lombok 을 사용하는데 자동 import 처리가 되어있지 않아서 compile 에러가 발생하는 것이다.


해결방법 1

  • Preferences -> Build, Execution, Deployment -> Compiler -> Annotation Processors
  • "Enable annotation processing" 체크


해결방법 2

해결방법 1의 방법은 필수로 해야되며 위에 방법을 했는데도 해결이 안된다면 시도해 보자.

  • Project 경로 -> .idea 폴더 제거
The .idea folder (hidden on OS X) in the solution root contains IntelliJ’s project specific settings files. These include per-project details such as VCS mapping and run and debug configurations, as well as per-user details, such as currently open files, navigation history and currently selected configuration.
...
.idea 폴더에 대한 자세한 설명은 이 곳을 참고하길 바란다.


댓글