Thymeleaf是一款用於渲染XML/XHTML/HTML5內容的模板引擎。相似JSP,Velocity,FreeMaker等,它也能夠輕易的與Spring MVC等Web框架進行集成做爲Web應用的模板引擎。與其它模板引擎相比,Thymeleaf最大的特色是可以直接在瀏覽器中打開並正確顯示模板頁面,而不須要啓動整個Web應用。html
好了,大家說了咱們已經習慣使用了什麼 velocity,FreMaker,beetle之類的模版,那麼到底好在哪裏呢? 比一比吧 Thymeleaf是不同凡響的,由於它使用了天然的模板技術。這意味着Thymeleaf的模板語法並不會破壞文檔的結構,模板依舊是有效的XML文檔。模板還能夠用做工做原型,Thymeleaf會在運行期替換掉靜態值。Velocity與FreeMarker則是連續的文本處理器。java
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"> <head> <title>Hello World!</title> </head> <body> <h1 th:inline="text">Hello springboot v.2</h1> <p th:text="${hello}"></p> </body> <html>
@Controller publicclass TemplateController { @RequestMapping("/") public String helloHtml(Map<String,Object> map){ map.put("hello","from TemplateController.helloHtml"); return"/index"; } }
classpath:/META-INF/resources/index.html classpath:/resources/index.html classpath:/static/index.html calsspath:/public/index.html
spring.thymeleaf.prefix: /templates/ spring.thymeleaf.suffix: .html
thymeleaf中的默認這是能夠查看org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties這個類的屬性spring
# Allow Thymeleaf templates to be reloaded at dev time spring.thymeleaf.cache: false server.tomcat.access_log_enabled: true server.tomcat.basedir: target/tomcat
在html頁面中引入thymeleaf命名空間,即 <html xmlns:th=http://www.thymeleaf.org></html>
,此時在html模板文件中動態的屬性使用th:命名空間修飾。瀏覽器
引用靜態資源文件,好比CSS和JS文件,語法格式爲@{}
,如@{/js/user/user.js}
會引入/static目錄下的/js/user/user.js文件。spring-mvc
訪問spring-mvc中model的屬性,語法格式爲${}
,如${user.id}
能夠獲取model裏的user對象的id屬性。緩存
循環,在html的標籤中,加入th:each="value:${list}"
形式的屬性,如<span th:each="user:${users}"></span>
能夠迭代users的數據 。tomcat
判斷,在html標籤中,加入th:if="表達式"
能夠根據條件顯示html元素 <span th:if="${not #lists.isEmpty(blog.publishTime)}"> <span id="publishtime" th:text="${#dates.format(blog.publishTime, 'yyyy-MM-dd HH:mm:ss')}"></span></span>
以上代碼表示若blog.publishTime時間不爲空,則顯示時間springboot
時間的格式化,${#dates.format(blog.publishTime,'yyyy-MM-dd HH:mm:ss')}
表示將時間格式化爲yyyy-MM-dd HH:mm:ss
格式化寫法與Java格式化Date的寫法是一致的。mvc
字符串拼接有兩種形式 好比拼接這樣一個URL:/blog/delete/{blogId}
app
th:href="'/blog/delete/' + ${blog.id }"
th:href="${'/blog/delete/' + blog.id }"