網上找了好多的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