今天小编就为大家分享一篇关于SpringBoot thymeleaf eclipse热部署方案操作步骤,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
网上找了好多的springboot热部署方案,也尝试了好几种方法,下面是我的成功方案跟大家分享
操作步骤
1.pom中添加热部署依赖
org.springframework.bootspring-boot-devtoolstrue org.springframework.bootspring-boot-s<mark style="color:transparent">来源gaodaimacom搞#^代%!码&网</mark>tarter-tomcat
2.添加插件
org.springframework.bootspring-boot-maven-plugin true
3.controller中添加后台跳转
@RequestMapping(value = "/index",method = RequestMethod.GET) public String hello(Model model) { model.addAttribute("name", "Dear"); return "index"; }
4.index.html
<title>神州泰岳征信系统</title>helloword! <p>3333</p> 测试热部署1111111
5. thymeleaf:
mode: HTML5 encoding: UTF-8 content-type: text/html #开发时关闭缓存,不然没法看到实时页面 cache: false cache-period: 0 template: cache: false
6.开启自动编译功能
7.进行测试
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对gaodaima搞代码网的支持。如果你想了解更多相关内容请查看下面相关链接
以上就是SpringBoot thymeleaf eclipse热部署方案操作步骤的详细内容,更多请关注gaodaima搞代码网其它相关文章!