检索 Shiro 主体
Posted
技术标签:
【中文标题】检索 Shiro 主体【英文标题】:Retrieving Shiro Principals 【发布时间】:2012-07-19 18:35:23 【问题描述】:注意:由于后续研究,此问题已完全重组。
我正在尝试从 Shiro 的主题 PrincipalCollection
中检索值。我在集合中添加了两个主体。 Username
和 UUID
。当我尝试回忆这些时,我得到一个大小 = 1 的 SimplePrincipalCollection
,而这又将主体作为大小 = 2 的 LinkedHashMap
。
问题是如何直接检索主体?
【问题讨论】:
你能分享一些代码来展示你想要做什么吗? PrincipalCollection 接口上有几个方法允许访问各个主体。他们没有做你想做的事吗? 【参考方案1】:没有必要为此添加多个原则。您可以创建一个包含您需要的所有信息的简单对象 (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();
【讨论】:
有没有MyPrinciple
应该实现的内置接口?
不!它可以是任何 POJO。以上是关于检索 Shiro 主体的主要内容,如果未能解决你的问题,请参考以下文章
使用 Apache Shiro 从 session/authenticationtoken/cache 中检索用户信息