-
2. Intellij spring boot devtool 적용하기개발관련/IntelliJ IDEA 2021. 10. 1. 14:39
Intellij에 spring-boot-devtools 적용하기
- gradle 파일 설정.
- dependencies 항목에 아래 코드를 추가한다.
dependencies { ... runtimeOnly('org.springframework.boot:spring-boot-devtools') ... }
- 컴파일러 설정
- 단축키를 활용하여 registry 검색(shift + shift 눌러서 registry 검색 or ctrl + shift + a 눌러서 registry 검색)
- compiler.automake.allow.when.app.running 항목을 찾아서 옆에 chekbox에 체크해주고 그냥 X버튼을 눌러서 닫는다. - Build project automatically 설정
- Setting (단축키 ctrl + alt + s) > Build, Execution, Deployment > Compiler > Build project automatically 체크 - application.yml 파일 설정
spring: devtools: restart: enabled: true thymeleaf: cache: false prefix: file:src/main/resources/templates/
- build.gradle 파일 설정
혹은apply plugin: 'idea'
아래 사진과 같이 Build and run using, Run tests using 항목을 IntelliJ IDEA로 변경해준다
- 재시작 후 html 파일을 변경해보기!
페이지 새로고침을 하면 서버를 재실행 하지 않아도 자동으로 변경된 내용이 수정되어 반영된다!!
끗!
'개발관련 > IntelliJ IDEA' 카테고리의 다른 글
1. IntelliJ(인텔리제이) svn 설정하기 (0) 2021.09.25 - gradle 파일 설정.