注意:由于随后的研究,这个问题已经完全重组。
我正在尝试从 Shiro 的主题中检索值PrincipalCollection
。我在集合中添加了两个主体。Username
和UUID
。当我尝试回忆这些时,我得到一个SimplePrincipalCollection
大小 = 1 的值,而这反过来又具有LinkedHashMap
大小 = 2 的主体。
问题是如何直接检索主体?
为此目的,不需要两个添加多个原则。您可以创建一个包含您需要的所有信息的简单对象 (POJO),并将其用作唯一原则。
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();