@RequiredArgsConstructor를 붙혔는데도 생성자를 제대로 생성을 안함
gradle버전이 5로 높아지면서 lombok추가 방식이 바뀜
해결 방안
dependencies {
...
//gradle 이 버전 4 라면
implementation 'org.projectlombok:lombok'
//gradle 이 버전 5 라면
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
...
}
'Error' 카테고리의 다른 글
APPLICATION FAILED TO START (0) | 2022.12.07 |
---|---|
Mac) 터미널 Git 충돌(Automatic merge failed; fix conflicts and then commit the result.) (0) | 2022.11.24 |
Mac) 터미널 Git config 인코딩 (0) | 2022.11.18 |
스프링 빈 순환 참조 오류(The dependencies of some of the beans in the application context form a cycle) (0) | 2022.11.15 |
long타입 0과 0L (0) | 2022.11.10 |
댓글