0

人们。我需要实现在表单登录中接受用户名或电子邮件的身份验证方法。

我怀疑这是实现 PasswordCredentialHandler 及其 AbstractCredentialHandler 抽象类。

有没有人经历过这个?

4

1 回答 1

0

更新 1

创建基于类 PasswordCredentialHandler 的处理程序和基于 UsernamePasswordCredential 的凭据。在商店配置中添加新的处理程序:

@Produces 
IdentityConfiguration produceIdentityManagementConfiguration() {
    IdentityConfigurationBuilder builder = new IdentityConfigurationBuilder();

    builder
        .named("default")
        .stores()
        .jpa().addCredentialHandler(EmailPasswordCredentialHandler.class)
        .supportAllFeatures().supportType(UserAccount.class);

    return builder.build();

使用多验证器支持或自定义验证器。

在身份验证中添加逻辑以识别用户是否键入了用户名或电子邮件,然后实例化正确的凭据。

原来的

请参阅此官方示例(来自 picketlink 站点):

@RequestScoped
@Named
public class AuthenticatorSelector {

   @Inject Instance<CustomAuthenticator> customAuthenticator;
   @Inject Instance<IdmAuthenticator> idmAuthenticator;

   private String authenticator;

   public String getAuthenticator() {

      return authenticator;
    }

   public void setAuthenticator(String authenticator) {
      this.authenticator = authenticator;
   }

   @Produces
   @PicketLink
   public Authenticator selectAuthenticator() {
       if ("custom".equals(authenticator)) {
           return customAuthenticator.get();
        } else {
           return idmAuthenticator.get();
        }
   }
 }

您可以实现逻辑以在 selectAutheticator 方法中选择每个电子邮件或用户 ID 的登录,然后@Produces注释@Picketlink提供以构建您的自定义身份验证器(电子邮件登录)或 idm 身份验证器(普通用户 ID 登录)。

于 2017-01-19T02:06:29.443 回答