Spring Boot不能使用Thymeleaf View服务css文件



我正在制作一个Spring Boot应用程序。我在resources/templates/chat.html中有一个百里香视图chat.html,我在其中包括style.css样式表。当我在浏览器中加载chat.html时,只有html显示,没有任何样式表。

这里是chat.html

<html xmlns:th="http://www.thymeleaf.org">
<head>
<link href="styles/style.css" rel="stylesheet">
<title>Chat Web App</title>
</head>
...some irrelevant html ...
<body>
</body>
</html>

我已经把style.css在resources/static/styles/style.css按照其他几个答案相同的问题,但没有好的。也许需要做一些额外的配置,或者我只是犯了一个愚蠢的打字错误。

问题实际上是在我的CSS文件:)。显然,我有选择器类不存在于html中。删除它们后,在评论中提出的解决方案工作得很好!

相关内容

  • 没有找到相关文章

最新更新