* lombok이란? Lombok은 Java에서 @Getter, @Setter 같은 annotation 기반으로 관련 기존 DTO, VO, Domain Class 작성할 때, 멤버 변수에 대한 Getter/Setter Method, Equals(), hashCode(), ToString()과 멤버 변수에 값을 설정하는 생성자 등을 자동로 생성해 주는 라이브러리입니다. * lombok 설정 (intelliJ기준) 1. build.gradle lombok추가 2. plugins lombok install 3. Enable annotation processing -> check