Back/Spring Java

lombok 라이브러리 세팅(intelliJ)

밍꿔 2019. 11. 15. 10:20


반응형

 

* lombok이란?

Lombok은 Java에서 @Getter, @Setter 같은 annotation 기반으로 관련 기존 DTO, VO, Domain Class 작성할 때, 멤버 변수에 대한 Getter/Setter Method, Equals(), hashCode(), ToString()과 멤버 변수에 값을 설정하는 생성자 등을 자동로 생성해 주는 라이브러리입니다.

 

* lombok 설정 (intelliJ기준)

 

1. build.gradle lombok추가

build.gradle

 

 

2. plugins lombok install

file -> settings -> plugins

 

3. Enable annotation processing -> check

file -> settings -> Build, Execution, Deployment -> Compiler -> Annotation Processors

 

반응형