之前我问过这个问题,但没有回答。我想我的问题不明确,所以我会再试一次:
我正在使用CAS对ldap进行身份验证:
我也从DB获取属性:
<property>
<list>
<bean class="org.jasig.cas.authentication.principal.HttpBasedServiceCredentialsToPrincipalResolver"/>
<bean class="org.jasig.cas.authentication.principal.CredentialsToLDAPAttributePrincipalResolver">
<property name="credentialsToPrincipalResolver">
<bean class="org.jasig.cas.authentication.principal.UsernamePasswordCredentialsToPrincipalResolver"/>
</property>
<property name="filter" value="(uid=%u)"/>
<property name="principalAttributeName" value="uid"/>
<property name="searchBase" value="ou=Users,dc=openiam,dc=com"/>
<property name="contextSource" ref="contextSource"/>
<property name="attributeRepository" ref="attributeRepository"/>
</bean>
</list>
</property>
现在,从数据库中选择属性的条目键是从LDAP检索的用户名:
<bean class="org.jasig.services.persondir.support.jdbc.SingleRowJdbcPersonAttributeDao">
<constructor-arg index="0" ref="dataSource1"/>
<constructor-arg index="1" value="SELECT * FROM USER_DATA WHERE {0}"/>
<property name="queryAttributeMapping">
<map>
<entry key="username" value="LOGINNAME"/>
//here I would like to use diffrenty entry key than username. how?
</map>
</property>
<property name="resultAttributeMapping">
<map>
<entry key="ROLE_NAME" value="ROLE_NAME"/>
<entry key="PERMISSIONS" value="PERMISSIONS"/>
<entry key="APP_NAME" value="APP_NAME"/>
</map>
</property>
</bean>
<entry key="username" value="uid"/>
在我的情况下,我想通过不同的输入键(从LDAP检索)从数据库中选择属性。
例如:
假设我在ldap中有这条记录:
用户名:john
电子邮件:john@john.com
现在认证后,我想以这种方式从数据库中选择属性: 从USERS_ATTRS中选择*,其中email = {0}
感谢。