我正在配置spring security ldap。但是在spring-security.xml中,我得到了这个警告
Referenced bean 'org.springframework.security.securityContextSource' not found
在<security:authentication-manager>
行
谁能告诉我,问题可能是什么?
答案 0 :(得分:1)
请确保您具有spring-ldap-core的依赖关系。 3.1.3的例子
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-ldap</artifactId>
<version>3.1.3.RELEASE</version>
</dependency>
答案 1 :(得分:0)
除了依赖性要求之外,请确保ldap.xml
中web.xml
配置文件(我希望实际声明你的bean)在{{1}}中被引用,但从事物的声音来看,Michael的答案是可能是对的。