我正在与spring MVC和Thymeleaf合作。如果我有这个文件夹结构,我有一个关于如何引用我的CSS文件的问题:
src
main
webapp
resources
myCssFolder
myCssFile.css
web-inf
spring
views
myViewFolder
index.html
我的配置类是这样的:
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/css/**").addResourceLocations("/css/**");
registry.addResourceHandler("/img/**").addResourceLocations("/img/**");
registry.addResourceHandler("/js/**").addResourceLocations("/js/**");
registry.addResourceHandler("/sound/**").addResourceLocations("/sound/**");
registry.addResourceHandler("/fonts/**").addResourceLocations("/fonts/**");
}
我在索引文件中调用href
,如下所示:
href="resources/css/bootstrap.min.css"
但是有些元素在我的页面中有些混乱,例如CSS无效。
答案 0 :(得分:9)
您需要使用th:href
属性来引用css文件。以下是百里叶教程的示例。如果百里香叶无法评估th:href
值,则默认为href
值。
<head>
<title>Good Thymes Virtual Grocery</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" media="all"
href="../../css/gtvg.css" th:href="@{/css/gtvg.css}" />
</head>
答案 1 :(得分:3)
我有这样的问题!那些步骤帮助了我。
<link th:href="@{/css/MyCSS.css}" href="/css/MyCSS.css" rel="stylesheet" type="text/css" />
答案 2 :(得分:1)