thymeleaf使用日记
Posted easylog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf使用日记相关的知识,希望对你有一定的参考价值。
引入mavin
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
yml配置
thymeleaf:
cache: false # 方便前端可以及时拿到更新数据
check-template-location: true
prefix: classpath:/templates/
suffix: .html
encoding: utf-8
mode: HTML5
如果通过拦截器访问thymeleaf丢失样式、脚本
<link rel="icon" href="../assets/img/favicon.ico" th:href="@{~../assets/img/favicon.ico}"> <link rel="stylesheet" type="text/css" href="css/webbase.css" th:href="@{~/css/webbase.css}" /> <link rel="stylesheet" type="text/css" href="css/pages-login-manage.css" th:href="@{~/css/pages-login-manage.css}" />
使用th:href在路径前面加一个~即可解决
以上是关于thymeleaf使用日记的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot:thymeleaf 没有正确渲染片段