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

Posted 白白胖胖萌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
 




















以上是关于spring boot 跳转页面和热加载的坑的主要内容,如果未能解决你的问题,请参考以下文章

spring boot security 实现根据情况跳转不同页面功能

spring boot+thymeleaf ,controller中返回html页面不能跳转成功?

spring boot中配置日志log和热部署

spring boot框架学习9-spring boot的web开发-错误解决及跳转页面

Spring boot后台搭建二集成Shiro添加Remember Me

Spring MVC @Controller中转发或者重定向到其他页面的信息怎么携带和传递(Servlet API对象)HttpServletRequestHttpServletRespose(代码片