스프링부트 자동 빌드 - 자바, thymeleaf 자동 리로드, autoreload, livereload

 

 

pom.xml에 스프링부트 데트툴 디팬던시 추가

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-devtools</artifactId>
  <scope>runtime</scope>
  <optional>true</optional>
</dependency>

 

 

application.yml 에 라이브리로드 추가

spring:
  devtools:
    livereload:
      enabled: true
    restart:
      enabled: true

또는

spring.devtools.livereload.enabled=true

spring.devtools.restart.enabled=true

 

livereload는 뷰단 파일 thymeleaf 파일등 변경되었을때 다시 로드 

restart는 자바파일 변경 시 재 빌드.

 

이클립스 메뉴 Project > Build Automatically 체크

 

+ Recent posts