4

我有一个使用 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 私有类: How to access authentication alias from EJB deploy to Websphere 6.1WSMappingCallbackHandlerFactory

我们可以在官方的 websphere 文档中看到:http://pic.dhe.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Finfo%2Fexp%2Fae %2Frsec_pluginj2c.html

但我不想要它,因为:

  1. 我认为我的应用程序可以访问我的 WebSphere 实例中的所有 JAAS 登录(不确定)。
  2. 此类定义在巨大的 IBM 客户端库 com.ibm.ws.admin.client-7.0.0.jar (42 Mo) => 编译速度较慢,在我的企业关系中不存在
  3. 它不是便携式的,不是标准的

有关信息,我将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.htmlhttp://static.springsource.org/spring-security/site /docs/3.1.x/reference/ldap.html

也许我必须完全改变我的方法并使用另一种方式?

4

1 回答 1

5

我假设您的目标是简单地使用您在 WebSphere 中配置的用户名/密码来连接到 LDAP 目录?如果是这种情况,您并没有真正尝试结合 LDAP 和基于 JAAS 的身份验证。JAAS 支持实际上旨在成为一种使用 JAASLoginModule对用户进行身份验证的方式,而不是使用基于 LDAP 的身份验证。

如果您想获得用户名和密码而不依赖于 WebSphere 的编译时,您有几个选择。

消除对 WAS 的编译时间和运行时依赖性

一种选择是以不同的方式配置密码。这可以像直接在配置文件中直接使用密码一样简单,如Spring Security LDAP 文档中所示:

<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 中配置用户名密码。另一种选择是使用带有属性的 .properties 文件。如果您想确保密码是安全的,那么您可能需要使用Jasypt之类的东西来加密密码。

消除编译时依赖并仍然使用 WAS 进行配置

如果您需要或想要使用 WebSphere 的 J2C 支持来存储凭证,那么您可以通过注入CallbackHandler实例来实现。例如,您的WebsphereCredentialsbean 可能是这样的:

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 定义配置文件来区分在 WebSphere 和非 WebSphere 机器上运行来完成。

于 2012-12-27T20:24:15.680 回答