SpringBoot默认不支持JSP的实时更新。
application.yml 配置如下:
server:
jsp-servlet:
init-parameters:
使用热部署工具,自动开启实时编译JSP的功能。
在pom.xml 增加依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
目前有两种解决方案:
application.yml 配置如下:
server:
jsp-servlet:
init-parameters:
development: true
使用热部署工具,自动开启实时编译JSP的功能。
在pom.xml 增加依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>