Thymeleaf模板引擎使用1
导入依赖
方法一:创建项目时导入Thyme leaf的依赖(常用)
方法二:了解
找到支持的thyme leaf版本,在Thymeleaf官网或GitHub导入此版本的依赖
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>3.0.14.RELEASE</version>
</dependency>
查看Thymeleaf相关源码
连按两次shift,搜索Thyme leaf相关的源码ThymeleafProperties.class
由源码可知,程序会搜索templates文件夹下的文件,后缀为html
简例
在templates文件下创建一个test.html
写一个controller层
运行程序,访问网页localhost:8080/test即可看到顺利加载