使用注意事项
1.pom中添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
2.application.properties文件的配置
# THYMELEAF (ThymeleafAutoConfiguration) # 开启模板缓存(默认值: true ) spring.thymeleaf.cache=false # 检查模板是否存在,然后再呈现 spring.thymeleaf.check-template=true # 检查模板位置是否正确(默认值 :true ) spring.thymeleaf.check-template-location=true #Content-Type 的值(默认值: text/html ) spring.thymeleaf.content-type=text/html # 开启 MVC Thymeleaf 视图解析(默认值: true ) spring.thymeleaf.enabled=true # 模板编码 spring.thymeleaf.encoding=UTF-8 # 要被排除在解析之外的视图名称列表,⽤逗号分隔 spring.thymeleaf.excluded-view-names= # 要运⽤于模板之上的模板模式。另⻅ StandardTemplate-ModeHandlers( 默认值: HTML5) spring.thymeleaf.mode=HTML5 # 在构建 URL 时添加到视图名称前的前缀(默认值: classpath:/templates/ ) spring.thymeleaf.prefix=classpath:/templates/ # 在构建 URL 时添加到视图名称后的后缀(默认值: .html ) spring.thymeleaf.suffix=.html
3.页面引入
<html lang="en" xmlns:th="http://www.thymeleaf.org">
4.静态文件使用注意路径,js文件和css文件
<link href="/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> <script type="text/javascript" src="/bootstrap/assets/js/ie8-responsive-file-warning.js"></script>
项目路径
5.如果出现引用静态文件404的情况,记得排查target文件夹,查看是不是静态资源没有编译到。
标签:spring,视图,用法,thymeleaf,默认值,true,模板 From: https://www.cnblogs.com/shuqing0803/p/18056070