Spring Security-Ldap认证配置

1.需要的包(除了Spring Security的包)
spring-ldap-1.2.1.jar(1.2.1+)
ldapbp.jar
commons-lang-2.4.jar
注:spring-ldap不能用1.2版本,1.2中AbstractContextSource.createContext是包级私有的,spring security的DefaultSpringSecurityContextSource继承了AbstractContextSource并需要访问该方法。在1.2.1版本中,这个方法是受保护的。

2.配置文件:
(1)服务器配置
 外部ldap服务器,指明服务的地址,用户名和密码
       manager-dn = "cn=root" manager-password = "111111"/>
 内部嵌入式ldap服务器(依赖于apache ds的包),指定根和要导入的ldif文件的路径
 
(2)认证提供者配置
 
(3)UserDetailService配置(只有启用了remember-me过滤器,才需要配置user-service)
 

3.认证和授权信息的指定(都存放在ldap中)
(1)认证信息:
 用户名(从匹配模式中获取)
 user-dn-pattern:用户dn的模式
 user-search-filter:用户名的模式
 user-search-base:用户查找的base
 用户口令
 如果使用bind认证,不需要知道LDAP中的口令属性名称。如果使用密码比较的认证方式,需要指定用户口令对应的属性名,缺省的属性名是userPassword。
(2)授权信息:
 group-role-attribute:用户权限的属性名称(默认是cn)
 group-search-filter:用户权限的模式
 group-search-base:权限超找的base
 role-prefix:权限前缀,默认是"ROLE_",如果不需要可以设置成"none"。


4.一个配置文件的示例

    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-2.0.xsd
                        http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.1.xsd">

   
       
       
   

   
   
   
    group-search-filter = "(member={0})" group-search-base="ou=groups"/>
 
    group-search-filter = "(member={0})" group-search-base="ou=groups"/>

你可能感兴趣的:(spring,security,服务器,access,filter,嵌入式,Spring,Security)