在applicationcontext.xml中添加资源标记后抛出404错误

时间:2014-04-02 10:19:41

标签: java spring-mvc

我正在将css和js文件夹添加到资源文件夹并尝试从jsp页面访问它,当我要添加标记时,它会在web-inf文件夹中显示404错误:

的一个应用-context.xml中

<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-3.0.xsd
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context-3.0.xsd
   http://www.springframework.org/schema/mvc 
   http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

   <context:component-scan base-package="com.test" />

   <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
      <property name="prefix" value="/WEB-INF/jsp/" />
      <property name="suffix" value=".jsp" />
   </bean>

   <mvc:resources mapping="/resources/**" location="/resources/" /> 
</beans>

如果我删除标签,应用程序已启动且工作正常。 我发现由于应用程序无法找到“资源”文件夹而发生此错误。

Project Structure

0 个答案:

没有答案