15.1 thymeleaf语法
在html文件中,有些是需要使用本地的css样式,使用thymeleaf语法加载:
首先对head标签上面的html标签进行更改:
<html lang="en" xmlns:th="http://www.thymeleaf.org">
其次,导入thymeleaf依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
接着,使用thymeleaf语法:
碰到href或者src后边与静态资源有关的的本地路径要进行修改,把要使用thymeleaf格式的属性前加入th:,等号后面改为"@{static下的路径(static不用写)}"。
文章来源:https://www.toymoban.com/news/detail-630318.html
<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
15.2 关闭模板引擎
在application.yaml中加入:文章来源地址https://www.toymoban.com/news/detail-630318.html
spring:
thymeleaf:
cache: false
到了这里,关于15 springboot项目——thymeleaf语法与关闭模板引擎的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!