Springboot+thymeleaf时thymeleaf导致样式引不进来问题解决
在使用springboot+thymeleaf的时候 网页的样式引不进来了 这时候有以下几种解决办法
首先引入thymeleaf引擎
<html lang="en" xmlns:th="http://www.thymeleaf.org">
一、使用thymeleaf的格式引入样式地址
<link rel="stylesheet" th:href="@{/css/style.css}">
二、两种格式都弄进来
<link rel="stylesheet" th:href="@{/css/style.css}" href="/css/style.css">
三、还是要注意路径问题:
有时候绝对路径不一定管用,我遇到的就是这个问题 都是用了绝对路径还是没效果 最后改成了相对路径竟然可以了