概念
Thymeleaf是一款用于渲染XML/XHTML/HTML5内容的模板引擎。它类似我们之前使用的JSP、FreeMaker等模版,它也可以轻易与SpringMVC等Web框架进行集成作为Web应用的模板引擎。同时Thymeleaf得到了SpringBoot官方对的推荐使用,同时也是未来的一个趋势。
与其它模板引擎相比,Thymeleaf最大的特点是能够直接在浏览器中打开并正确显示模板页面,而不需要启动整个Web应用。
Thymeleaf快速入门
1、在使用Thymeleaf之前,首先在pom.xml文件导入依赖
dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-thymeleaf/artifactId/dependency
2、resource目录下的templates目录新建一个html页面test.html(另外Thymeleaf默认的页面文件后缀是.html)
3、编写controller层
package