728x90
반응형
brad903.tistory.com/entry/devtools-%EC%82%AC%EC%9A%A9%EB%B2%95
이 글이 성공시켜주었기 때문에 이 글을 참조하면 좋을 것 같습니다.
1. pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
2. ctrl + alt + s
3. ctrl + shift + a > registry 클릭!
4. application.properties
spring.devtools.livereload.enabled=true
spring.devtools.restart.enabled=true
spring.thymeleaf.cache=false
5. 인텔리제이 재시작하기
6. 실전 적용법
이거 클릭한 다음 web 새로고침 해주면 됩니다.
728x90
반응형
'Dev > SpringBoot' 카테고리의 다른 글
31. [springboot] Spring boot 기초 회원가입 예제 v2.0 (2) | 2020.12.31 |
---|---|
30. [springboot] WebJar를 이용해 CDN 대체하기 (0) | 2020.11.29 |
28. [springboot] 프로젝트 초기에 구성하면 좋을 것들 (0) | 2020.11.28 |
27. [springboot] 환경 구성 분리하기 (0) | 2020.11.16 |
26. [springboot] Thymeleaf 값 전달방법 기초(짱쉬움) (0) | 2020.11.04 |