반응형
spring boot 1.x 버전대
- application.properties
server.jsp-servlet.init-parameters.development=true
spring boot 2.x 버전대
dependency 추가
|
1
2
3
4
|
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
|
cs |
application.properties 추가
JSP 바로적용 설정
devtools.livereload.enabled=true
반응형
'JAVA/SPRING > SPRING-BOOT' 카테고리의 다른 글
| [Spring Boot]Spring MVC JSP + Mybatis + PostgreSQL(DB) 웹 튜토리얼(인텔리제이용 intelliJ) - 2 (2) | 2019.10.10 |
|---|---|
| [Spring Boot]Spring MVC JSP 웹 튜토리얼(인텔리제이용 intelliJ) - 1 (0) | 2019.10.02 |
| Spring Boot의 application.properties에 대해.. (0) | 2018.02.09 |
| [Spring-boot]eclipse에서 Maven 으로 OpenCV 사용하기 (0) | 2018.02.09 |
| Spring Boot RESTFul Web Service Example – GET/POST/PUT/PATCH/DELETE (0) | 2018.02.01 |