Spring boot Rebuild없이 정적소스(HTML,CSS,js) 적용방법
본문 바로가기
Spring/Spring Boot

Spring boot Rebuild없이 정적소스(HTML,CSS,js) 적용방법

by IYK2h 2022. 2. 25.
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

댓글