我无法将css链接到JSP页面 -
项目结构:
webapp
resources
css
bootstrap-iso.css
WEB-INF
views
jsp
app.jsp
jsp文件中的以下代码有效:
<link rel="stylesheet" href="https://formden.com/static/cdn/bootstrap-iso.css"/>
但是,当我提供以下任何一项
时,它不起作用<link rel="stylesheet" href="../../../resources/css/bootstrap-iso.css"/>
<link rel="stylesheet" href="/resources/css/bootstrap-iso.css"/>
我还在ApplicationConfig文件中设置了资源处理程序
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
}
答案 0 :(得分:0)
尝试在spring-web-config.xml
文件中配置资源:
<mvc:resources mapping="/resources/**" location="/resources/" />
<mvc:annotation-driven />
并将css文件与c:url
:
<link href="<c:url value="/resources/css/bootstrap-iso.css" />" rel="stylesheet">