반응형
컴파일 빌드중 lombok error
-
SpringBoot | lombok cannot find symbol (getter, setter)▼ Backend/스프링 (Spring) 2021. 8. 23. 12:20
▶ 1. 이클립스 자체에서 발생 Spring Boot | lombok 사용 시 Getter, Setter Undefined ▶ 이클립스 lombok 사용 시 Getter, Setter 못 찾는 문제 Maven 혹은 Gradle에 lombok 의존성 추가 후 @Data, @Getter, @Setter 등 어노테이션을 사용하여 Value Object를 만들어 사용하려는데 못 찾는 문제가 발.. kitty-geno.tistory.com ▶ 2. 컴파일 시, 프로젝트 빌드 중 발생 Gradle annotationProcessor 추가 dependencies { //lombok implementation 'org.projectlombok:lombok' annotationProcessor 'org.projectlo..