在我的maven Spring Project中netbeans CSS / Js文件无法打开.. 的web.xml
<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>OrderManager</display-name>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>SpringConfiguration</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet </servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SpringConfiguration</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
SpringConfiguration-servlet.xml中
e<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.ordermanager.users.controller" />
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/" />
<property name="suffix" value=".jsp" />
</bean>
<mvc:annotation-driven/>
<mvc:resources mapping="/resources/**" location="/resources/**"/>
即使控制器和其他功能工作正常,我也无法访问任何CSS或JS文件.. 但如果我在浏览器中打开以下网址 http://localhost:8080/OrderManager/resources/css/loginpagestyle.css,它显示未找到404。
答案 0 :(得分:2)
经过大量搜索后,我的404问题通过删除位置设置值中的初始“ / ”得以解决。而不是
<mvc:resources mapping="/resources/**" location="/resources/"/>
与上一个答案一样,我用过:
<mvc:resources mapping="/resources/**" location="resources/"/>
微小的变化,但它确实成功了。我假设“/”为路径添加了额外的文件夹级别。此外,我将资源文件夹直接放在 webapp 文件夹下。
感谢Suda's Tech Zone帮我解决这个问题。
使用Maven 4.0.0,eclispse kelper,java 1.7,mybatis 3.1.1。
答案 1 :(得分:0)
您的资源映射错误。应该是:
<mvc:resources mapping="/resources/**" location="/resources/"/>