在引导程序中引用css和js文件

时间:2017-05-10 08:01:04

标签: spring-boot

enter image description here

我正在尝试引用我的css文件,如图所示。由于我的index.html在templates文件夹中,我必须返回1级(../),然后进入static / css / {我想要的文件}。但是,这无法呈现我的css和js文件。我在这做错了什么?我正在使用百日咳模板引擎进行弹簧靴应用。请帮忙谢谢

1 个答案:

答案 0 :(得分:0)

Spring-Boot和Thymeleaf合作得很好。默认情况下,Spring-Boot会在这些文件夹中查找静态资源。

  • /META-INF/resources
  • /resources/
  • /static/
  • /public/

所以你不需要回到任何上层。您的引用通常应该是这样的:

<link rel="stylesheet" href="/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" />