728x90
devtools 라이브러리 의존성 추가
maven
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>
Gradle
compile group: 'org.springframework.boot', name: 'spring-boot-devtools', version: '2.0.4.RELEASE'
application 옵션 추가
application.yml
spring:
devtools:
livereload:
enabled: true
freemarker:
cache: false
thymeleaf:
cache: false
application.properties
spring.devtools.livereload.enabled=true
spring.freemarker.cache=false
spring.thymeleaf.cache=false
소스 변경 후 저장 -> 새로고침 -> 변경 사항 적용
728x90
'Spring > Spring Boot' 카테고리의 다른 글
스프링부트 몽고DB find*() query에러 (0) | 2022.11.25 |
---|---|
spring-boot, react, axios 사용시 Cors, session, cookie 문제 (0) | 2022.03.04 |
JPA & PostgreSQL 연동 (0) | 2021.09.03 |
JPA의 Entity (0) | 2021.08.27 |
JPA의 Entity와 DTO를 구분하여 사용해야하는 이유 (0) | 2021.08.20 |
댓글