我正在尝试在我的应用程序中实现 Spring Security> 我正在关注这个代码项目教程
http://www.codeproject.com/Articles/253901/Getting-Started-Spring-Security
这里我的 spring-secrity.xml 文件看起来像 -
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/security"
xmlns:bean="http://www.springframework.org/schema/beans" 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/security
http://www.springframework.org/schema/security/spring-security-3.0.3.xsd">
<http auto-config='true'>
<intercept-url pattern="/**" access="ROLE_USER" />
</http>
<authentication-manager>
<authentication-provider>
<user-service>
<user name="testadmin" password="testadminpassword"
authorities="ROLE_USER, ROLE_ADMIN" />
<user name="testuser" password="testuserpassword" authorities="ROLE_USER" />
</user-service>
</authentication-provider>
</authentication-manager>
</beans>
但是在运行代码时,我遇到了异常-
[2013-08-23 15:27:14,607] 错误 [org.springframework.web.context.ContextLoader] 上下文初始化失败 org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:来自 ServletContext 资源的 XML 文档中的第 8 行 [/WEB -INF/spring-security.xml] 无效;嵌套异常是 org.xml.sax.SAXParseException;行号:8;列号:86;cvc-elt.1:找不到元素“beans”的声明。
任何人都可以通过灯光请您解决这里的问题以及如何纠正它,我们将不胜感激。