[E-2-2] 롬복 설치하기
2020. 1. 30. 13:47ㆍProject E/Project E 파트1
반응형
롬복 라이브러리 설치
의존성 추가 : compile('org.projectlombok:lombok')
build.gradle
더보기
buildscript {
ext {
springBootVersion = '2.1.7.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group 'com.minokuma.book'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.projectlombok:lombok')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
소스 수정 후 라이브러리(의존성) 다운로드
Gradle 탭의 새로고침 버튼 클릭
롬복 플러그인 설치
액션창 : [Ctrl + Shift + A] > Plugins 검색
설치 후 재시작
롬복 설정
우측 하단의 경고표시의 이벤트 로그의 파란색 표기 부분 클릭
Enable annotation processing 체크
반응형
'Project E > Project E 파트1' 카테고리의 다른 글
[E-2-3] HelloController 롬복으로 전환 (0) | 2020.01.30 |
---|---|
[E-2-1] 스프링 부트에서 테스트 코드 작성 (0) | 2020.01.30 |