수업을 듣는 도중 사진처럼 builder() 메소드를 찾을 수 없다는 에러가 계속 떴다.
다시 코딩하고 정답인 코드로 바꿔봐도 같은 결과여서 엄청 답답했다..
cannot find symbol method builder()......
구글링을 해보았을 때
1. Lombok 플러그인 설치
2. Preferences > Build, Execution, Deployment > Compiler > Annotation Processors 에서 Enable annotation processing 박스에 체크
이 둘은 처음부터 해놓은 상태...
okky 사이트에서 (https://okky.kr/article/669701) 해답을 찾았다.
build.gradle dependencies 밑에 줄을 추가해주면 해결이 된다!
annotationProcessor('org.projectlombok:lombok')
testAnnotationProcessor('org.projectlombok:lombok')
'Tip' 카테고리의 다른 글
[React] No 'Access-Control-Allow-Origin' header is present on the requested resource. 해결방법 / server socket 연결하기 (0) | 2021.06.05 |
---|---|
[React] Cannot find module 'socket.io' 해결법 -1 (0) | 2021.06.05 |
SpringBoot 에서 한글 오류 날 때(foreign key) (0) | 2021.05.29 |
[Modal] 모달 창 테마 사이트 (0) | 2021.05.29 |
SpringBoot 에서 한글 오류 날 때 (0) | 2021.05.28 |