0

我正在尝试使用 Active Directory 设置 LDAP 并遇到错误,我是 Spring Security 的新手。我正在使用 Spring core 3.2 和 spring security 3.1,有人可以帮忙吗....

    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.filterChains': Cannot resolve reference to bean 'org.springframework.security.web.DefaultSecurityFilterChain#13' while setting bean property 'sourceList' with key [13]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.web.DefaultSecurityFilterChain#13': Cannot resolve reference to bean 'org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0' while setting constructor argument with key [1]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0': Cannot resolve reference to bean 'org.springframework.security.authentication.ProviderManager#0' while setting bean property 'authenticationManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.authentication.ProviderManager#0': Cannot resolve reference to bean 'org.springframework.security.config.authentication.AuthenticationManagerFactoryBean#0' while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.config.authentication.AuthenticationManagerFactoryBean#0': FactoryBean threw exception on object creation; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.authenticationManager': Cannot resolve reference to bean 'myLdapAuthProvider' while setting constructor argument with key [0]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'myLdapAuthProvider' defined in ServletContext resource [/WEB-INF/context/webappContext-security.xml]: Resolution of declared constructors on bean Class [org.springframework.security.ldap.authentication.ad.ActiveDirectoryLdapAuthenticationProvider] from ClassLoader [WebappClassLoader
  context: /myApp
delegate: false
 repositories:
/WEB-INF/classes/
----------> Parent Classloader:
 org.apache.catalina.loader.StandardClassLoader@75e4fc
 ] failed; nested exception is java.lang.NoClassDefFoundError:     org/springframework/ldap/NamingException
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:329)
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:107)

我的 wepappSecuroty-context.xml 是,

     <?xml version="1.0" encoding="UTF-8"?>
     <beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:sec="http://www.springframework.org/schema/security"
   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">

<sec:http pattern="/public/login.jsp" security="none"/>
<sec:http pattern="/index.jsp*" security="none"/>
<sec:http pattern="/images/**" security="none"/>
<sec:http pattern="/js/**" security="none"/>
<sec:http pattern="/public/**" security="none"/>
<sec:http pattern="/styles/**" security="none"/>
<sec:http pattern="/services/**" security="none"/>
<sec:http pattern="/public/login.jsp" security="none"/>


<sec:http use-expressions="true" entry-point-ref="loginUrlAuthenticationEntryPoint">
    <sec:intercept-url pattern="/ui/login.do" access="permitAll"/>
    <sec:intercept-url pattern="/ui/**" access="isAuthenticated()"/>
    <sec:intercept-url pattern="/**" access="isAuthenticated()"/>
    <sec:form-login login-page="/public/login.jsp"/>
</sec:http>
<bean id="loginUrlAuthenticationEntryPoint"
      class="org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint">
    <property name="loginFormUrl" value="/ui/login.do"/>
</bean>
<bean id="securityFilter"
      class="org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter">
     <property name="authenticationManager" ref="authenticationManager"/>
    <!--  When user provides correct username/password and authentication is successful -->
    <property name="authenticationSuccessHandler"
              ref="authenticationSuccessHandler"/>
</bean>
<sec:authentication-manager alias="authenticationManager">
    <sec:authentication-provider ref="myLdapAuthProvider"/>
</sec:authentication-manager>
<bean id="myLdapAuthProvider"
      class="org.springframework.security.ldap.authentication.ad.ActiveDirectoryLdapAuthenticationProvider">
    <constructor-arg value="xxxx"/>
    <constructor-arg value="ldaps://xxxxx:1111/DC=ent,DC=yyy,DC=xxxx,DC=corp"/>
    <property name="convertSubErrorCodesToExceptions" value="true"/>
    <property name="useAuthenticationRequestCredentials" value="true"/>
    <property name="authoritiesMapper" ref="grantedAuthoritiesMapper"/>
</bean>

<bean id="grantedAuthoritiesMapper" class="com.blah.security.MyAuthorityMapper"/>

<bean id="authenticationSuccessHandler"
      class="org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler">
    <property name="defaultTargetUrl" value="/ui/home.do"/>
</bean>

4

1 回答 1

1
java.lang.NoClassDefFoundError:     org/springframework/ldap/NamingException

您是否已将相应的 jar(spring-ldap.jar)添加到您的类路径中?

如果是这样,请对照您的 spring-core.jar 版本检查 spring-ldap.jar 的版本。

于 2013-05-20T01:07:08.647 回答