thymeleaf模板无法在不同的文件夹中加载srcs

时间:2016-05-12 12:51:11

标签: html spring web thymeleaf

放在不同于html文件的不同文件夹中的srcs没有正确加载。

enter image description here

2 个答案:

答案 0 :(得分:1)

如果您创建了一个文件夹" public"在与模板相同的级别,您可以设置任何类型的资源,js,图像,CSS ......

想象一下,你有这样的结构:

public
      js
        jquery-2.2.1.js
      css
        styles.css
templates
      index.html

在你的模板(index.html)中使用它的正确方法是

<script th:src="@{/js/jquery-2.2.1.js}"></script>
<link rel="stylesheet" type="text/css" th:href="@{/css/style.css}"/>

答案 1 :(得分:0)

作为相同的结构,

&#13;
&#13;
 <img  th:src="@{/resources/assets/images/onecard-logo.png}" />
&#13;
&#13;
&#13;

根据您的解析器进行操作 它可能会起作用

试试吧