首先,这是我的第一个问题,我真的需要你的帮助。我想提高我的J2EE技能,为此,我开始做一些教程。但是我在调度程序servlet中遇到了问题。
这是我的pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mywebsiteq</groupId>
<artifactId>emusicstoreq</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
</dependencies>
这是web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
和dispatcher-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<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.emusicstoreq" />
<mvc:annotation-driven />
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
<mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" />
这是捕获我一直得到的确切错误:
文件夹结构的屏幕截图:
我收到此错误,我不知道如何解决这个问题。我试图检查互联网,但我找不到解决方法。
如果有人可以帮助我,我真的很感激。感谢
答案 0 :(得分:2)
location
属性必须指向公共Web资源。看下面的java doc description
从Spring资源模式指定的服务静态内容的资源位置。每个位置 必须指向有效的目录。可以将多个位置指定为以逗号分隔的列表和位置 将按指定的顺序检查给定资源。例如,值为“/,classpath:/ META-INF / public-web-resources /“将允许从Web应用程序根目录和任何JAR上提供资源 包含/ META-INF / public-web-resources /目录的类路径,其中包含Web应用程序根目录中的资源 优先级。
静态内容必须位于WEB-INF目录之外。如果您将资源文件夹保留在WEB-INF的父文件夹中,即应用程序根目录,那么您的标记将如下所示:
<mvc:resources mapping="/resources/**" location="/resources/" />
答案 1 :(得分:2)
尝试使用此
<resources mapping="/resources/**" location="/resources/" />
如果没有效果,请检查新错误是什么。