반응형

📝IntelliJ 컴파일 속도 증진

  1. Preference → Preferences Build, Execution, Deployment Build Tools Gradle 이동
  2. Build and run using - Gradle → IntelliJ IDEA 변경
  3. Run tests using - Gradle → IntelliJ IDEA 변경

 

현재는 이렇게 설정하지만 추후에는 달라질 수도 있을 것 같습니다

 

 

📝HotReload, HotSwap

Gradel 추가

implementation 'org.springframework.boot:spring-boot-devtools:2.6.3'

 

버전의 경우는 최신 버전으로 맞춰주시면 됩니다

 

IntelliJ 설정

  • Preference → Build, Execution, Deployment → Compiler → Build Project automatically 체크 후 apply

 

  • Settings → Advanced Settings → Allow-auto-make to start even if developed application is current running 체크 후 Apply

 

📝Prettier

Prettier의 경우 회사 자체적으로 있지 않는 이상 대기업인 Google에서 사용하는 Java Code Style을 따라가도록 하자

 

  1. https://github.com/google/styleguide (구글 스타일 가이드 저장소)
  2. intellij-java-google-style.xml 다운로드
  3. IntelliJ → settings → Code Style → Java 
  4. Scheme → Import Scheme → IntelliJ IDEA code style XML 클릭 → 다운받은 intellij-java-google-style.xml 넣기

 

 

save시 자동으로 코드 변환

  • Reformat Code
    • save시 자동으로 코드 형태 변경
  • Optimize Imports
    • 사용되지 않는 import 자동삭제

 

  • Settings → Appearance & Behavior → System Settings → Save files if the IDE is idle for 15 seconds (매 15초 자동 저장)

 

🔗 참고 및 출처

https://yeon-kr.tistory.com/197

반응형