CAS的LDAP用户属性

时间:2015-06-09 07:40:59

标签: java spring-security ldap single-sign-on cas

您好我在我的应用程序中使用CAS进行单点登录(spring应用程序)。 我能够使用CAS登录,我只获取用户名,但不是电子邮件或CAS的任何其他属性。

对于CAS方面的身份验证我使用LDAP并在deployerConfigContext.xml中配置下面是代码

在authenticationManager中添加了以下代码

<property name="credentialsToPrincipalResolvers">
<list>
     <bean class="org.jasig.cas.authentication.principal.CredentialsToLDAPAttributePrincipalResolver">
            <property name="credentialsToPrincipalResolver">
                <bean
                    class="org.jasig.cas.authentication.principal.UsernamePasswordCredentialsToPrincipalResolver" />
            </property>
            <property name="filter" value="sAMAccountName=%u" />
            <property name="principalAttributeName" value="sAMAccountName" />
            <property name="searchBase" value="DC=test,DC=com" />
            <property name="contextSource" ref="LDAPcontextSource" />
            <property name="attributeRepository">
                <ref bean="attributeRepository" />
            </property>
        </bean>
</list>
</property>

并使用了LdapPersonAttributeDao

 <bean id="attributeRepository"
        class="org.jasig.services.persondir.support.ldap.LdapPersonAttributeDao">
        <property name="baseDN" value="cn=test,ou=test,dc=test,dc=com" />
        <property name="contextSource" ref="LDAPcontextSource" />
        <property name="requireAllQueryAttributes" value="true" />
        <property name="queryAttributeMapping">
            <map>
                <entry key="username" value="sAMAccountName" />
            </map>
        </property>
        <property name="resultAttributeMapping">
            <map>
                <entry key="displayName" value="cn" />
                <entry key="mail" value="email" />
            </map>
        </property>
    </bean>

我已经阅读了一些帖子并发现在下面的配置中添加allowedAttributes属性是配置

    <bean id="serviceRegistryDao" class="org.jasig.cas.services.InMemoryServiceRegistryDaoImpl">
        <property name="registeredServices">
            <list>
                <bean class="org.jasig.cas.services.RegisteredServiceImpl">
    <property name="id" value="0" />
    <property name="name" value="HTTP" />
    <property name="description" value="Only Allows HTTP Urls" />
    <property name="serviceId" value="http://**" />
    <property name="allowedAttributes">
        <list>
            <value>cn</value>
            <value>mail</value>
        </list>
    </property>
</bean>

在我的申请方面,我写了一个用于获取用户名和电子邮件的课程,代码是

    public class RestAuthenticationUserDetailsService implements AuthenticationUserDetailsService<CasAssertionAuthenticationToken> {

    @Override
    public UserDetails loadUserDetails(CasAssertionAuthenticationToken token)
            throws UsernameNotFoundException {
        Object principal = token.getPrincipal();
        String username = token.getName();
        LOGGER.info(username);

        Collection<GrantedAuthority> authorities = new ArrayList<GrantedAuthority>();
        return new User(username, "", authorities);
    }

}

我收到的是用户名,但没有获得电子邮件等其他属性。当我调试时,我发现主要属性是空的。

有人可以帮我解决如何获取应用程序的属性的问题 提前谢谢。

1 个答案:

答案 0 :(得分:1)

我在deployerConfigContext.xml中的config中看到。 1.在,键是LDAP条目属性,值是Principal&#39; s(值) 2.在,你应该允许Principal中的值(例如displayName&amp; mail)

希望它对你有所帮助,欢呼!