检索四郎顶部(Retrieving Shiro Principals)

2019-09-19 22:14发布

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

我正在尝试从四郎的主题PrincipalCollection值。 我已经添加了两个校长集合。 “用户名”和“UUID”。 当我试图回忆起这些,我得到的大小= 1的SimplePrincipalCollection而这又校长为size = 2的LinkedHashMap中。

问题是我怎么能直接检索校长?

Answer 1:

没有必要两个用于此目的添加多个原则。 你可以创建一个包含你需要用它作为唯一的原则,所有信息的简单对象(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();


文章来源: Retrieving Shiro Principals