SpringBoot thymeleaf eclipse熱部署方案操作步驟
網(wǎng)上找了好多的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中添加后臺跳轉(zhuǎn)
@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>神州泰岳征信系統(tǒng)</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 #開發(fā)時(shí)關(guān)閉緩存,不然沒法看到實(shí)時(shí)頁面 cache: false cache-period: 0 template: cache: false
6.開啟自動編譯功能
7.進(jìn)行測試
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
- SpringBoot如何IDEA中實(shí)現(xiàn)熱部署
- Idea中Springboot熱部署無效問題解決
- springboot熱部署知識點(diǎn)總結(jié)
- SpringBoot 在IDEA中實(shí)現(xiàn)熱部署步驟詳解(實(shí)用版)
- SpringBoot項(xiàng)目在IntelliJ IDEA中如何實(shí)現(xiàn)熱部署
- Spring Boot集成spring-boot-devtools開發(fā)時(shí)實(shí)現(xiàn)熱部署的方式
- Springboot在IDEA熱部署的配置方法
- Springboot熱部署實(shí)現(xiàn)原理及實(shí)例詳解
相關(guān)文章
基于Java實(shí)現(xiàn)的一層簡單人工神經(jīng)網(wǎng)絡(luò)算法示例
這篇文章主要介紹了基于Java實(shí)現(xiàn)的一層簡單人工神經(jīng)網(wǎng)絡(luò)算法,結(jié)合實(shí)例形式分析了java實(shí)現(xiàn)人工神經(jīng)網(wǎng)絡(luò)的具體實(shí)現(xiàn)技巧,需要的朋友可以參考下2017-12-12Mybatis choose when用法實(shí)例代碼
本文通過實(shí)例代碼給大家介紹了Mybatis choose when用法,需要的的朋友參考下吧2017-06-06使用Vue+Spring Boot實(shí)現(xiàn)Excel上傳功能
這篇文章主要介紹了使用Vue+Spring Boot實(shí)現(xiàn)Excel上傳,需要的朋友可以參考下2018-11-11springboot+mybatis如何屏蔽掉mybatis日志
這篇文章主要介紹了springboot+mybatis如何屏蔽掉mybatis日志問題,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-05-05springboot基于IDEA環(huán)境熱加載與熱部署教程
這篇文章主要為大家介紹了springboot在IDEA環(huán)境下的熱加載與熱部署教程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步2022-03-03idea2023設(shè)置啟動參數(shù)、單元測試啟動參數(shù)
在使用IDEA進(jìn)行開發(fā)時(shí),我們可以通過設(shè)置一些啟動參數(shù)來優(yōu)化開發(fā)環(huán)境的性能和體驗(yàn),具有一定的參考價(jià)值,感興趣的可以了解一下2023-11-11