Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- bootstrap
- WebJar
- 방법론
- 감사
- 프로젝트 시작
- Microservices
- Spring Boot
- #Microservice
- jv
- #단축키
- #화면캡쳐 #macOS
- 분석 작업
- 평가인증
- java
- 년말
- 2010
- #Gradle Multi project with IntelliJ
- docker #docker tutorial
- Lambda
- #정규표현식
- 토익
Archives
- Today
- Total
사랑해 마니마니
intellij Lombok 설정하기 본문
IntelliJ에서 lombok을 사용해 보자
Step 1. lombok plugin 설정
(Windows)에서
- File > Setting > Plugins
- Browse repositorie에서 lombok으로 검색
- Lombok Plugin (TOOLS INTEGRATION) Install
- IntelliJ Restart
(MacOS)에서
- IntelliJ IDEA > Preferences > Plugins
- "lombok" or "Lombok"으로 검색
- Lombok Plugin Install
- IntelliJ Restart
Step 2. Lombok을 Coding 중에도 동작하게 하려면
Enable Annotation Processing 셋팅하기
- Settings, (MacOS인 경우 Preferences) > Build, Execution, Deployment > Compiler > Annotation Processings
- Enable annotation processing 체크
- OK 클릭
Step 3. Application 수행시 컴파일되도록 설정
- Shift + Ctrl + A (MacOS인 경우 Shift + command + A, 혹시 터미널 창이 뜨면 https://djkeh.github.io/articles/A-weird-keyboard-shortcut-bug-while-using-find-action-in-intellij-and-mac-kor/ )
- Find Action > Registry 입력
- Registry... > compiler.automake.allow.when.app.running 체크
Step 3. Gradle에 Lombok추가하기
plugins {
id 'org.springframework.boot' version '2.1.3.RELEASE'
id 'java'
id "io.freefair.lombok" version "3.1.4"
}
'spring boot in action' 카테고리의 다른 글
3Tier 로 고치기 (0) | 2018.04.21 |
---|---|
Microservice @spring boot (0) | 2018.04.21 |
Bootstrap WebJar 사용하기 (0) | 2018.01.14 |
for each문 lambda 식으로 간편하게 쓰기 (1) | 2017.12.24 |
Spring boot 최신 버전 build.gradle (0) | 2017.12.24 |
Comments