【发布时间】:2019-02-15 20:27:39
【问题描述】:
所以我正确加载了静态 css 文件,然后出于某种原因,不知道为什么,它们停止正确加载。 这是我的项目结构:
在 index.html 中导入:
<head>
<link rel="stylesheet" th:href="@{/css/styles.css}"/>
</head>
我什至尝试在application.properties 中设置spring.resources.static-locations=classpath:/static/ 无济于事。
最好的部分:
检查网站时 - styles.css 在templates 文件夹中加载为index.html。
做什么?
【问题讨论】:
标签: java spring spring-mvc thymeleaf