技術介紹
項目結構:
1、pom.xml
1 <!-- thymeleaf --> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-starter-thymeleaf</artifactId> 5 </dependency> 6 <!-- 7 devtools可以實現頁面熱部署(即頁面修改後會立即生效,這個可以直接在application.properties文件中配置spring.thymeleaf.cache=false來實現), 8 實現類文件熱部署(類文件修改後不會立即生效),實現對屬性文件的熱部署。 9 即devtools會監聽classpath下的文件變動,並且會立即重啟應用(發生在保存時機),注意:因為其采用的虛擬機機制,該項重啟是很快的 10 --> 11 <dependency> 12 <groupId>org.springframework.boot</groupId> 13 <artifactId>spring-boot-devtools</artifactId> 14 <optional>true</optional><!-- optional=true,依賴不會傳遞,該項目依賴devtools;之後依賴myboot項目的項目如果想要使用devtools,需要重新引入 --> 15 </dependency> View Code說明:如果僅僅使用thymeleaf,只需要引入thymeleaf;如果需要使用devtools,只需要引入devtools。
注意:
即添加了fork:true
2、ThymeleafController
1 package com.xxx.firstboot.web; 2 3 import org.springframework.stereotype.Controller; 4 import org.springframework.ui.Model; 5 import org.springframework.web.bind.annotation.RequestMapping; 6 import org.springframework.web.bind.annotation.RequestMethod; 7 import org.springframework.web.bind.annotation.RequestParam; 8 9 import io.swagger.annotations.Api; 10 import io.swagger.annotations.ApiOperation; 11 12 @Api("測試Thymeleaf和devtools") 13 @Controller 14 @RequestMapping("/thymeleaf") 15 public class ThymeleafController { 16 17 @ApiOperation("第一個thymeleaf程序") 18 @RequestMapping(value = "/greeting", method = RequestMethod.GET) 19 public String greeting(@RequestParam(name = "name", required = false, defaultValue = "world") String name, 20 Model model) { 21 model.addAttribute("xname", name); 22 return "greet"; 23 } 24 25 } View Code說明:Model可以作為一個入參,在代碼中,將屬性以"key-value"的形式存入model,最後直接返回字符串即可。
3、greet.html
1 <!DOCTYPE HTML> 2 <html xmlns:th="http://www.thymeleaf.org"> 3 <head> 4 <title>第一個thymeleaf程序</title> 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6 </head> 7 <body> 8 <p th:text="'Hello, ' + ${xname} + '!'" /> 9 <div>1234567890!!!xx</div> 10 </body> 11 </html> View Code注意:
以上的目錄與ssm中開發的不一樣,ssm中會放在src/main/webapp下
測試:
補充:
參考:http://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html#using-boot-devtools-restart-exclude