Spring Security 3命名空间配置问题

时间:2011-01-18 23:51:44

标签: configuration namespaces spring-security

您好 我无法理解为什么会出现以下错误:

  

org.springframework.beans.factory.parsing.BeanDefinitionParsingException:配置问题:您不能在Spring Security 3.0中使用spring-security-2.0.xsd架构。请将架构声明更新为3.0架构。

当我尝试运行具有以下安全命名空间配置的应用程序时:

安全配置:

<beans:beans xmlns="http://www.springframework.org/schema/security"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:beans="http://www.springframework.org/schema/beans"
 xmlns:jdbc="http://www.springframework.org/schema/jdbc"
 xsi:schemaLocation="
  http://www.springframework.org/schema/beans 
  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  http://www.springframework.org/schema/jdbc  http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
  http://www.springframework.org/schema/security 
  http://www.springframework.org/schema/security/spring-security-3.0.3.xsd
 ">
...
</beans:beans>

有人可以帮我理解吗?

由于

0 个答案:

没有答案