引入前端
templates下放html页面
static下放css、js、image等静态资源
添加thymeleaf命名空间
<html lang="en" xmlns:th="http://www.thymeleaf.org">
修改静态资源引入路径
所有的引用资源路径都需要该为thymeleaf的语法。
一般都在在前面加th:
连接:@{ }
<!-- <link rel="stylesheet" href="static/css/backend-plugin.min.css">--> <!-- <link rel="stylesheet" href="static/">--> <link rel="stylesheet" th:href="@{/css/backend-plugin.min.css}"> <link rel="stylesheet" th:href="@{/css/backend.css}">
关闭thymeleaf缓存
spring.thymeleaf.cache=false