检索Shiro校长

时间:2012-07-20 13:13:04

标签: security jsf shiro

注意:由于后续研究,这个问题已经完全重组。

我正在尝试从Shiro的主题PrincipalCollection中检索值。我在集合中添加了两个主体。 '用户名'和'UUID'。当我尝试回忆这些时,我得到一个size = 1的SimplePrincipalCollection,而这又将主体作为一个大小= 2的LinkedHashMap。

问题是如何直接检索主体?

1 个答案:

答案 0 :(得分:5)

为此目的,不需要两个添加多个原则。您可以创建一个包含所需信息的简单对象(PO​​JO),并将其作为唯一原则。

public class MyRealm extends JdbcRealm {

...
enter code here


@Override
protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {

    SimpleAuthenticationInfo info = null;
    try {
        //GET USER INFO FROM DB etc. here
        MyPrinciple USER_OBJECT = new MyPrinciple();
        USER_OBJECT.setId(UUID);
        USER_OBJECT.setUsername(username);
        info = new SimpleAuthenticationInfo(USER_OBJECT, password.toCharArray(), getName());

    } catch (IOException | SQLException e) {
        logger.error(message, e);
        throw new AuthenticationException(message, e);
    }

    return info;
}

然后,当您需要登录用户的用户信息时,只需调用getPrinciple()并在将其转换为用户类(POJO)后使用其getter方法:

MyPrinciple LoggedInUser = (MyPrinciple ) SecurityUtils.getSubject().getPrinciple();
long uid = LoggedInUser.getId();
String username = LoggedInUser.getUsername();