반응형
    
    
    
  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 설정 여부 확인 (기본으로 사용으로 설정되어 있음)
3. eclipse 설정 중 Build Automatically 설정 여부 확인 (기본으로 사용으로 설정되어 있음)
반응형
    
    
    
  'web > Spring' 카테고리의 다른 글
| Spring에서 url 요청하는 RestTemplate 설명 (0) | 2018.05.27 | 
|---|---|
| spring boot에서 jsp사용하기 (0) | 2018.05.27 | 
| Tomcat에서 war 사이에 session 공유 (0) | 2018.05.27 | 
| Spring Interceptor와 Filter에서 POST 방식으로 전달된 JSON 데이터 처리하기 (0) | 2018.05.27 | 
| Java Json Library Jacson Annotation 소개 (0) | 2018.05.27 |