我有一个使用LDAP身份验证的Java EE Web应用程序。我使用Spring安全性通过以下代码连接到我的LDAP:
<bean id="ldapContextSource" class="com.myapp.security.authentication.MySecurityContextSource">
<constructor-arg index="0" value="${ldap.url}" />
<constructor-arg index="1" ref="userConnexion" />
</bean>
<security:authentication-manager alias="authenticationManager">
<security:authentication-provider ref="ldapAuthProvider" />
</security:authentication-manager>
<bean id="userConnexion" class="com.myapp.util.security.WebsphereCredentials">
<constructor-arg value="${ldap.authJndiAlias}" />
</bean>
<bean id="ldapAuthProvider" class="org.springframework.security.ldap.authentication.LdapAuthenticationProvider">
<constructor-arg>
<bean class="org.springframework.security.ldap.authentication.BindAuthenticator">
<constructor-arg ref="ldapContextSource" />
<property name="userSearch" ref="userSearch" />
</bean>
</constructor-arg>
<constructor-arg>
<bean class="com.myapp.security.authentication.MyAuthoritiesPopulator" >
<property name="userService" ref="userService" />
</bean>
</constructor-arg>
<property name="userDetailsContextMapper" ref="myUserDetailsContextMapper"/>
<property name="hideUserNotFoundExceptions" value="false" />
</bean>
实际上,我的bean WebsphereCredentials
在此响应中使用了WebSphere私有类WSMappingCallbackHandlerFactory
:How to access authentication alias from EJB deployed to Websphere 6.1
我们可以在官方的websphere文档中看到它:http://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae%2Frsec_pluginj2c.html
但我不想要它,因为:
有关信息,我将WebsphereCredentials
构造函数定义为:
Map<String, String> map = new HashMap<String, String>();
map.put(Constants.MAPPING_ALIAS, this.jndiAlias);
Subject subject;
try {
CallbackHandler callbackHandler = WSMappingCallbackHandlerFactory.getInstance().getCallbackHandler(map, null);
LoginContext lc = new LoginContext("DefaultPrincipalMapping", callbackHandler);
lc.login();
subject = lc.getSubject();
} catch (NotImplementedException e) {
throw new EfritTechnicalException(EfritTechnicalExceptionEnum.LOGIN_CREDENTIAL_PROBLEM, e);
} catch (LoginException e) {
throw new EfritTechnicalException(EfritTechnicalExceptionEnum.LOGIN_CREDENTIAL_PROBLEM, e);
}
PasswordCredential cred = (PasswordCredential) subject.getPrivateCredentials().toArray()[0];
this.user = cred.getUserName();
this.password = String.valueOf(cred.getPassword());
有没有办法只使用Spring安全性并删除这种依赖?
我不知道如何合并http://static.springsource.org/spring-security/site/docs/3.1.x/reference/jaas.html和http://static.springsource.org/spring-security/site/docs/3.1.x/reference/ldap.html。
也许我必须彻底改变我的方法并使用另一种方式?
答案 0 :(得分:5)
我假设您的目标是简单地利用您在WebSphere中配置的用户名/密码来连接到LDAP目录?如果是这种情况,您实际上并没有尝试组合LDAP和基于JAAS的身份验证。 JAAS支持实际上是一种使用JAAS LoginModule
来验证用户而不是使用基于LDAP的身份验证的方法。
如果您想要获取用户名和密码而没有对WebSphere的编译时依赖性,那么您有几个选择。
一种选择是以不同的方式配置密码。这可以像直接在配置文件中直接使用密码一样简单,如Spring Security LDAP documentation:
所示<bean id="ldapContextSource"
class="org.springframework.security.ldap.DefaultSpringSecurityContextSource">
<constructor-arg value="ldap://monkeymachine:389/dc=springframework,dc=org"/>
<property name="userDn" value="cn=manager,dc=springframework,dc=org"/>
<property name="password" value="password"/>
</bean>
您还可以在JNDI中配置用户名密码。另一种方法是使用带有Property的.properties文件。如果您想确保密码是安全的,那么您可能希望使用Jasypt之类的东西来加密密码。
如果您需要或想要使用WebSphere的J2C支持来存储凭据,那么您可以通过注入CallbackHandler
实例来完成。例如,您的WebsphereCredentials
bean可能是这样的:
try {
LoginContext lc = new LoginContext("DefaultPrincipalMapping", this.callbackHandler);
lc.login();
subject = lc.getSubject();
} catch (NotImplementedException e) {
throw new EfritTechnicalException(EfritTechnicalExceptionEnum.LOGIN_CREDENTIAL_PROBLEM, e);
} catch (LoginException e) {
throw new EfritTechnicalException(EfritTechnicalExceptionEnum.LOGIN_CREDENTIAL_PROBLEM, e);
}
PasswordCredential cred = (PasswordCredential) subject.getPrivateCredentials().toArray()[0];
this.user = cred.getUserName();
this.password = String.valueOf(cred.getPassword());
您的配置将如下所示:
<bean id="userConnexion" class="com.myapp.util.security.WebsphereCredentials">
<constructor-arg ref="wasCallbackHandler"/>
</bean>
<bean id="wasCallbackHandler"
factory-bean="wasCallbackFactory"
factory-method="getCallbackHandler">
<constructor-arg>
<map>
<entry
value="${ldap.authJndiAlias}">
<key>
<util:constant static-field="com.ibm.wsspi.security.auth.callback.Constants.MAPPING_ALIAS"/>
</key>
</entry>
</map>
</constructor-arg>
<constructor-arg>
<null />
</constructor-arg>
</bean>
<bean id="wasCallbackFactory"
class="com.ibm.wsspi.security.auth.callback.WSMappingCallbackHandlerFactory"
factory-method="getInstance" />
CallbackHandler
个实例不是线程安全的,通常不应多次使用。因此,将CallbackHandler
实例作为成员变量注入可能有点冒险。您可能希望在检查中进行编程,以确保CallbackHandler
仅使用一次。
您可以执行混合方法,始终删除编译时依赖项,并允许您在可能未在WebSphere上运行的实例中删除运行时依赖项。这可以通过组合这两个建议并使用Spring Bean Definition Profiles来区分在WebSphere和非WebSphere机器上运行来完成。