當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Springboot项目搭建(三)整合thymeleaf模板
生活随笔
收集整理的這篇文章主要介紹了
Springboot项目搭建(三)整合thymeleaf模板
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
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
五、編寫controller
路徑:src.main.java.域名反寫.項目名.controller
@Controller public class IndexController {@RequestMapping("demo")public String demo(){return "demo";} }六、啟動項目并訪問頁面
參考 純潔的微笑 springboot(四):thymeleaf使用詳解
總結
以上是生活随笔為你收集整理的Springboot项目搭建(三)整合thymeleaf模板的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2014 网选 上海赛区 hdu 504
- 下一篇: JS时间戳和时间互转