web/Spring

spring boot 재시작 없이 frontend(html, js..) 변경내용 사용하기

반응형

spring boot를 공부하면서 html요소가 자동으로 변경되지 않아서.. 
계속 껏다켜야해서 너무 불편했다.

그래서 구글링 하던중 방법을 알게되어 적어본다.

1. pom.xml 추가


1
2
3
4
5
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>
cs


2. debug 모드로 실행

3. eclipse 설정 중 Build Automatically 설정 여부 확인 (기본으로 사용으로 설정되어 있음)


반응형