SpringBoot thymeleaf eclipse热部署方案操作步骤

时间:2021-05-20

网上找了好多的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.进行测试

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章