繁体   English   中英

Spring MVC 3.1 - 命名空间错误

[英]Spring MVC 3.1 - Namespace error

我在dispatcher-servlet.xml有以下内容

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:beans="http://www.springframework.org/schema/beans"
       xsi:schemaLocation="http://www.springframework.org/schema/mvc
                           http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
                           http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
                           http://www.springframework.org/schema/context
                           http://www.springframework.org/schema/context/spring-context-3.1.xsd
                           http://www.springframework.org/schema/util
                           http://www.springframework.org/schema/util/spring-util-3.1.xsd">

XML验证失败了

从元素'context:component-scan'开始发现无效内容。 其中一个'{“http://www.springframework.org/schema/mvc":argument-resolvers,,http://www.springframework.org/ schema / mvc”:return-value-handlers}'是预期的。

我检查了http://www.springframework.org/schema/mvc/定义的模式,一切似乎都没问题。 以前我使用的是Spring mvc 3.0,它没有遇到任何问题。 我将所有jar文件直接放在WEB-INF/lib 有任何想法吗?

更新

这是验证失败的行<context:component-scan base-package="com" />是的,所有使用的jar都来自Spring 3.1

可能是错的,但是查看模式和给出的错误,您是否可能尝试在<mvc:annotation-driven> </mvc:annotation-driven>放置<context:component-scan base-package="com" /> -element <mvc:annotation-driven> </mvc:annotation-driven> -tags或忘记关闭<mvc:annotation-driven> -tag? 将组件扫描放在标签外部或正确关闭<mvc:annotation-driven> -tag。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM