Referenced bean 'org.springframework.security.securityContextSource' not found
问题 I am configuring spring security ldap. But in spring-security.xml, m getting this warning Referenced bean 'org.springframework.security.securityContextSource' not found on <security:authentication-manager> line Can anyone tell me, what can be the problem??? 回答1: Please ensure you have in dependencies spring-ldap-core. Example for 3.1.3 <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-ldap</artifactId> <version>3.1.3.RELEASE</version> </dependency> 回答2: