[Spring] Gradle 에서 Lombok이 null 이 될때 확인!
by Roel Downey728x90
반응형
Gradle로 만든 프로젝트에서 Lombok으로 만든 Annotation이 프로젝트 export를 하는 경우 포함되지 않아서 null이 나오는 오류를 보게 된다.
이를 해결하기 위해서는 build.gradle에 Lombok Annotation의 설정을 추가해주면 된다.
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.projectlombok:lombok')
annotationProcessor('org.projectlombok:lombok')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
728x90
반응형
'Web > Spring' 카테고리의 다른 글
[Spring] Spring Boot 2.3, Web-starter doesn't bring Validation-starter anymore (0) | 2020.07.28 |
---|---|
[Spring] Spring MVC (0) | 2020.07.24 |
[디자인패턴] 템플릿 메소드 패턴 (0) | 2020.07.20 |
[Spring] Spring IoC / DI 컨테이너 (0) | 2020.06.03 |
[Spring] Spring이란? (0) | 2020.06.03 |
블로그의 정보
What doing?
Roel Downey