首页| 新闻| 娱乐| 游戏| 科普| 文学| 编程| 系统| 数据库| 建站| 学院| 产品| 网管| 维修| 办公| 热点
网上找了好多的springboot热部署方案,也尝试了好几种方法,下面是我的成功方案跟大家分享
操作步骤
1.pom中添加热部署依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </dependency>
2.添加插件
<groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration> <fork>true</fork></configuration>
3.controller中添加后台跳转
@RequestMapping(value = "/index",method = RequestMethod.GET) public String hello(Model model) { model.addAttribute("name", "Dear"); return "index"; }
4.index.html
<!DOCTYPE html><html xmlns:th="http://www.thymeleaf.org"><head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>神州泰岳征信系统</title></head><body>helloword!<p th:text="'Hello!, ' + ${name} + '!'" >3333</p>测试热部署1111111</body></html>
5. thymeleaf:
mode: HTML5 encoding: UTF-8 content-type: text/html #开发时关闭缓存,不然没法看到实时页面 cache: false cache-period: 0 template: cache: false
6.开启自动编译功能
7.进行测试
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对VeVb武林网的支持。
练就火眼金睛 十一种常见电脑
打印机共享提示“操作无法完成
如何查找有故障的配件
回眸一笑百魅生,六宫粉黛无颜色
岁月静美,剪一影烟雨江南
芜湖有个“松鼠小镇”
小满:小得盈满,一切刚刚好!
一串串晶莹剔透的葡萄,像一颗颗宝石挂在藤
正宗老北京脆皮烤鸭
人逢知己千杯少,喝酒搞笑图集
搞笑试卷,学生恶搞答题
新闻热点
疑难解答
图片精选
Kotlin结合Rxjava+Retrofit实现极
Kotlin与Java的主客观对比分析
Kotlin特性介绍及与Java 和 C#的简
Kotlin与Java哪个好?Kotlin与Java的
网友关注