服务器之家

服务器之家 > 正文

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

时间:2021-07-20 16:19     来源/作者:小飞侠-2

网上找了好多的springboot热部署方案,也尝试了好几种方法,下面是我的成功方案跟大家分享

操作步骤

1.pom中添加热部署依赖

?
1
2
3
4
5
6
7
8
9
<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.添加插件

?
1
2
3
4
5
<groupid>org.springframework.boot</groupid>
<artifactid>spring-boot-maven-plugin</artifactid>
<configuration>
  <fork>true</fork>
</configuration>

3.controller中添加后台跳转

?
1
2
3
4
5
@requestmapping(value = "/index",method = requestmethod.get)
 public string hello(model model) {
   model.addattribute("name", "dear");
   return "index";
 }

4.index.html

?
1
2
3
4
5
6
7
8
9
10
11
<!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:

?
1
2
3
4
5
6
7
8
  mode: html5
  encoding: utf-8
  content-type: text/html
 #开发时关闭缓存,不然没法看到实时页面
  cache: false
  cache-period: 0
template:
    cache: false

6.开启自动编译功能

7.进行测试

总结

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

原文链接:https://blog.csdn.net/qq_26562641/article/details/74332277

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部