springboot整合thymeleaf模板
一、POM文件添加依賴
<!--thymeleaf-->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency><!--nekohtml 解決thymealeaf標簽閉合問題-->
<dependency><groupId>net.sourceforge.nekohtml</groupId><artifactId>nekohtml</artifactId><version>1.9.14</version>
</dependency>
二、創建項目結構
|- src|- main|- resources|- templates
三、yml配置文件(properties文件同下)
常用屬性
spring.thymeleaf.cache 是否開啟模板緩存,默認true
spring.thymeleaf.encoding 指定模板的編碼,默認為: UTF-8
spring.thymeleaf.prefix 指定模板的前綴,默認為:classpath:/templates/
spring.thymeleaf.suffix 指定模板的后綴,默認為:.html
spring.thymealeaf.mode 指定模板的模式, 默認為:HTML5 (如果使用了nekohtml依賴 設置為LEGACYHTML5)
參考 xixicat SpringBoot配置屬性之MVC
四、演示頁面
路徑:src.main.resoruces.templates
demo.html
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"> <!-- 未導入nekohtml依賴且修改mode時,此處需閉合,否則會報錯 --><title>Thymealeaf Page</title>
</head>
<body><h1>Hello Thymealeaf!</h1>
</body>
</html>
五、編寫controller
路徑:src.main.java.域名反寫.項目名.controller
@Controller
public class IndexController {@RequestMapping("demo")public String demo(){return "demo";}
}
六、啟動項目并訪問頁面
參考 純潔的微笑 springboot(四):thymeleaf使用詳解