1

我正在开发我的第一个 Jsf、Jaas、JPA、JBoss 应用程序,现在我遇到了这个问题。我在 JBoss 中创建了两个安全域:

<security-domain name="Database" cache-type="default">
<authentication>
    <login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule" flag="required">
        <module-option name="dsJndiName" value="java:jboss/JaasDS"/>
        <module-option name="principalsQuery" value="select password from user where mail=?"/>
        <module-option name="rolesQuery" value="select role, 'Roles'   from user u where u.mail=?"/>
    </login-module>
</authentication>
</security-domain>
<security-domain name="Custom" cache-type="default">
  <authentication>
    <login-module code="demo.SampleLoginModule" flag="required"/>
  </authentication>
</security-domain>

如果我使用“数据库”域,一切正常,而如果我使用“自定义”域,则无法将角色设置为主体。

我的示例登录模块

public class SampleLoginModule implements LoginModule {
    private String username;
    private String password;

    private SamplePrincipal userPrincipal;

    public boolean login() throws LoginException {
        //Here i check the credentials 
    }

    public boolean commit() throws LoginException {
        //Here i add principal to subject 

        userPrincipal.setName("username");

        if (!(subject.getPrincipals().contains(userPrincipal))) 
            subject.getPrincipals().add(userPrincipal);
        }
    }
}

我的简单校长

public class SamplePrincipal implements Principal {
    private String name;

    public SamplePrincipal() {
        super();
    }

    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }   
}

我会在方法 commit 中为主体添加一个角色,isUserInRole否则返回false

我怎样才能做到这一点?

4

1 回答 1

1

添加一个名为 Roles 的 java.security.acl.Group ,其中包含用户的角色名称:

Set<Principal> principals = subject.getPrincipals();

Group roleGroup = new JAASGroup("Roles");
for (String role : userRoles)
  roleGroup.addMember(new RolePrincipal(role));

// group principal
principals.add(roleGroup);

// username principal
principals.add(new UserPrincipal("user"));

其中 JAASGroup 是 java.security.acl.Group 的实现,RolePrincipal 和 UserPrincipal 是 java.security.Principal 的实现。

于 2013-04-14T21:10:53.513 回答