✅ 롬복 적용 방법
build.gradle
에 라이브러리 및 환경 추가
plugins {
id 'org.springframework.boot' version '2.3.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE' id 'java'
}
group = 'hello'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}
- File > Settings (윈도우 기준) > plugin > lombok 검색 및 설치 실행 (IntelliJ 재시작)
- Preferences > Annotation Processors 검색 > Enable anntation processing 체크 (IntelliJ 재시작)
- 임의의 테스트 클래스를 만들고 @Getter, @Setter 확인 (어노테이션이 사용 가능하면 잘 설치 및 설정된 것임)