spring boot 跳转页面和热加载的坑

跳转页面需要加上模版依赖:
<!--thymeleaf-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
热加载的依赖:
<!-- 支持热加载jar包依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>true</scope>
</dependency>

注意需要在application.properties配置:
#禁止thymeleaf缓存(建议:开发环境设置为false,生产环境设置为true)
spring.thymeleaf.cache=false
 


posted @ 2018-03-21 18:01  白白胖胖萌  阅读(410)  评论(0编辑  收藏  举报