SpringBoot使用Thymeleaf模板引擎
快速构建Thymeleaf模板引擎
简单5步起,就实现模板引擎开始:
1、引入依赖包。2、设置配置文件。3、编辑后台代码。4、编辑前端代码。5、启动项目访问。构建步骤
1、SpringBoot的pom.xml引入Thymeleaf依赖包
SpringBoot默认提供了Thymeleaf的Starter,只需简单引入依赖即可。
dependency groupIdorg.springframework.boot/groupId artifactIdspring-boot-starter-thymeleaf/artifactId /dependency 版本号根据SpringBoot的版本号,引用的版本不一样。本教程使用SpringBoot2.1.5.RELEASE版本,默认使用3.0.11.RELEASE版本。
2、SpringBoot设置配置文件
本教程使用了yml来配置SpringBoot的配置文件,使用三个配置文件。开发环境和生产环境都需要添加。配置文件可以参考
spring:#模板配置thymeleaf: prefix:classpath:/templates/#PrefixthatgetsprependedtoviewnameswhenbuildingaURL.前缀,用于在构建URL时查看名称。 cache:false#Whethertoenabletemplatecaching.是否启用模板缓存。 check-template:true#Whethertocheckthatthetemplateexistsbeforerenderingit.渲染前是否检查模板是否存在。 check-template-location:true#Whethertocheckthatthetemplateslocationexists.是否检查模板位置。 enabled:true#WhethertoenableThymeleafviewresolutionforWebframeworks.是否为Web框架启用Thymeleaf视图解析。 enable-spring-el-