您好我使用spring并且我想要包含一个css文件。
我已经在webapp下创建了一个文件夹resources / mytheme / css / signing.css。
我的调度程序servlet看起来像这样:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.springapp.mvc"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/pages/"/>
<property name="suffix" value=".jsp"/>
</bean>
<mvc:resources mapping="/resources/**" location="/resources/mytheme/" />
</beans>
在我的jsp文件中,我引用了这样的css文件:
<link href="${pageContext.request.contextPath}/resources/css/signing.css" rel="stylesheet" >
当我浏览页面时,我总是得到404并且所请求的资源不可用。
有人可以帮助我吗?
答案 0 :(得分:0)
我通过将此问题添加到我的web.xml
来修复此问题<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/resources/*</url-pattern>
</servlet-mapping>
这使我的资源文件夹可用。