欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

SpringBoot thymeleaf eclipse熱部署方案操作步驟

 更新時間:2019年03月11日 09:21:54   作者:小飛俠-2  
今天小編就為大家分享一篇關(guān)于SpringBoot thymeleaf eclipse熱部署方案操作步驟,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧

網(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ā)時關(guān)閉緩存,不然沒法看到實時頁面
    cache: false
    cache-period: 0
  template:
      cache: false

6.開啟自動編譯功能

7.進行測試

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接

相關(guān)文章

最新評論