java - Spring MVC Servlet 错误

标签 java xml spring jsp spring-mvc

尝试使用 Spring MVC、addMinutes.jsp 和 hello.jsp 访问我的页面时出现以下错误。我只能访问根本地主机,但如果我导航到某个页面,则会收到此错误:

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 11 in XML document from ServletContext resource [/WEB-INF/config/servlet-config.xml] is invalid;
nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mvc:annotation-driven'.

我在网上搜索过,我认为我的 xml="" 链接可能是错误的,但我是直接从pluralsight.com 教程中得到的。我是 JAVA MVC 的新手,所以这对我来说很陌生。任何帮助将不胜感激。

这是我的 servlet-config.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-2.0.xsd
                            http://www.springframework.org/schema/aop
                            http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">

        <mvc:annotation-driven/>
        <context:component-scan base-package="com.pluralsight.controller"></context:component-scan>

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

            <bean class="org.springframework.web.servlet.view.InteralResourceViewResolver" p:prefix="/WEB-INF/jsp/" p:suffix=".jsp"/>
    </beans>

这是我的 web.xml

   <?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

    <servlet>
        <servlet-name>fitTrackerServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/config/servlet-config.xml</param-value>
        </init-param>
    </servlet>

    <servlet-mapping>
        <servlet-name>fitTrackerServlet</servlet-name>
        <url-pattern>*.html</url-pattern>
    </servlet-mapping>


  <display-name>Archetype Created Web Application</display-name>
</web-app>

最佳答案

mvccontext 架构位置添加到应用程序上下文文件中的 beans 部分

 <?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"        
      xmlns:p="http://www.springframework.org/schema/p"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
                          http://www.springframework.org/schema/beans/spring-beans-2.0.xsd                       http://www.springframework.org/schema/aop
                          http://www.springframework.org/schema/aop/spring-aop
                          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">

关于java - Spring MVC Servlet 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21390019/

相关文章:

xml - 返回 R 网页中的链接列表

javascript - 无法在 'insertBefore' : The node before which the new node is to be inserted is not a child of this node 上执行 'Node'

Web 应用程序中的 Java Spring 错误处理性能

java - Hibernate 忽略 fetchgraph

java - Java中的 pretty-print 二维数组

java - Hadoop2.2 的 Mahout 错误

Android SlidingPaneLayout 淡入淡出

java - 如何配置和检索 g :select in Grails? 的值

spring - Grails:仅POST或GET httprequest参数

javascript - 让 React 路由器与 Spring 端点一起工作