码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-03-21 19:55:02      阅读:499      评论:0      收藏:0      [点我收藏+]

标签:pre   framework   环境   too   group   pid   thymeleaf   spring   post   

跳转页面需要加上模版依赖:
<!--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
 


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

标签:pre   framework   环境   too   group   pid   thymeleaf   spring   post   

原文地址:https://www.cnblogs.com/cxca/p/8618649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!