1

いくつかの解決策を見つけましたが、うまくいきませんでした。プロジェクトにライブラリを追加しましたが、このエラーが発生しています。コントローラ クラスからセキュリティ ライブラリにアクセスできました。何か案が?

org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration     problem: Unable to locate Spring NamespaceHandler for XML schema namespace     [http://www.springframework.org/schema/security] 
Offending resource: ServletContext resource [/WEB-INF/spring-security.xml]

これは私の spring-security.xml

<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="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.1.xsd">

<http auto-config="true">
    <intercept-url pattern="/*" access="ROLE_USER" />
</http>

<authentication-manager>
  <authentication-provider>
    <user-service>
    <user name="test" password="123" authorities="ROLE_USER" />
    </user-service>
  </authentication-provider>
</authentication-manager>

</beans:beans>
4

2 に答える 2

0

http://www.springframework.org/schema/security/spring-security-3.0.xsd代わりに名前空間として使用してください。

于 2013-06-06T14:16:53.797 に答える