728x90
320x100
lombok 좋은 거 알았다! 그렇다면 lombok은 어떻게 설치해야 하며 롬복을 설치한후 꼭 활성화를 시켜줘야 한다는데 어떻게 활성화를 시켜줘야 하는가? 에 대한 내용
*** 인테리제이가 IDEA인 경우를 기준으로 작성
[설치방법]
- File > Settings > Plugins 에서 상단 검색창에 'lombok' 검색하여 설치함!
[롬복 잘 설치됐는지 확인]
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-devtools'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
- build.gradle의 dependencies 에 lombok이 잘 들어가있는지 확인~!
[롬복을 활성화 하는 방법]
- File > Settings > Annotaiton Processors > Enable annotation processing 체크 해주면 활성화 완!
728x90
320x100
'💻 하나씩 차곡차곡 > Back-end' 카테고리의 다른 글
[스프링부트/Spirng boot] properties VS yml (0) | 2024.02.09 |
---|---|
[Intellij(인텔리제이)] 플러그인 수동 설치하는 방법 (0) | 2024.02.08 |
[Spring Boot (스프링부트)] Devtools 기능 및 설정방법 (0) | 2024.02.06 |
[Mybatis] Mybatis SQL 주석 사용시 주의할점 (/**/ , -- 등) (0) | 2024.01.29 |
[Spring boot/스프링부트] Web server failed to started. Port 8080 was already in use. 에러 해결방법 (0) | 2024.01.17 |