无法到达thme:thymeleaf上的src路线

时间:2017-09-15 10:15:45

标签: java css spring hyperlink thymeleaf

嗯,仅此而已,尝试了一切,谷歌搜索并仍未解决这个棘手的问题,

如果你能帮助我,我会很高兴的!

在这里你可以看到它的外观; enter image description here

这是css代码;

<link rel="stylesheet" src="/static/assets/css/style.css"
th:href="@{/assets/css/style.css}" media="screen" type="text/css"></link>

在这里,您可以看到我的文件的组织。

enter image description here

2 个答案:

答案 0 :(得分:0)

在你的html代码中以这个

开头
<html xmlns:th="http://www.thymeleaf.org">

此外,从链接中删除src并将其替换为href

 <link rel="stylesheet" href="/static/assets/css/style.css"
th:href="@{/assets/css/style.css}" media="screen" type="text/css"></link>

答案 1 :(得分:0)

执行此操作。注意“ ..”和rel =“ stylesheet”

<link href="../static/assets/css/style.css" th:href="@{/assets/css/style.css}" rel="stylesheet">