Apache Shiro 使用手册(四)Realm 实现

来源:互联网 发布:snmp java 发送数据 编辑:程序博客网 时间:2024/05/24 06:33

Apache Shiro 使用手册(四)Realm 实现

    博客分类: 
  • 开发
安全框架Shiro
在认证、授权内部实现机制中都有提到,最终处理都将交给Real进行处理。因为在Shiro中,最终是通过Realm来获取应用程序中的用户、角色及权限信息的。通常情况下,在Realm中会直接从我们的数据源中获取Shiro需要的验证信息。可以说,Realm是专用于安全框架的DAO. 

一、认证实现 
正如前文所提到的,Shiro的认证过程最终会交由Realm执行,这时会调用Realm的getAuthenticationInfo(token)方法。 
该方法主要执行以下操作: 
1、检查提交的进行认证的令牌信息 
2、根据令牌信息从数据源(通常为数据库)中获取用户信息 
3、对用户信息进行匹配验证。 
4、验证通过将返回一个封装了用户信息的AuthenticationInfo实例。 
5、验证失败则抛出AuthenticationException异常信息。 

而在我们的应用程序中要做的就是自定义一个Realm类,继承AuthorizingRealm抽象类,重载doGetAuthenticationInfo (),重写获取用户信息的方法。 
Java代码  收藏代码
  1. protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken authcToken) throws AuthenticationException {  
  2.         UsernamePasswordToken token = (UsernamePasswordToken) authcToken;  
  3.         User user = accountManager.findUserByUserName(token.getUsername());  
  4.         if (user != null) {  
  5.             return new SimpleAuthenticationInfo(user.getUserName(), user.getPassword(), getName());  
  6.         } else {  
  7.             return null;  
  8.         }  
  9. }  

二、授权实现 
而授权实现则与认证实现非常相似,在我们自定义的Realm中,重载doGetAuthorizationInfo()方法,重写获取用户权限的方法即可。 
Java代码  收藏代码
  1. protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {  
  2.         String userName = (String) principals.fromRealm(getName()).iterator().next();  
  3.         User user = accountManager.findUserByUserName(userName);  
  4.         if (user != null) {  
  5.             SimpleAuthorizationInfo info = new SimpleAuthorizationInfo();  
  6.             for (Group group : user.getGroupList()) {  
  7.                 info.addStringPermissions(group.getPermissionList());  
  8.             }  
  9.             return info;  
  10.         } else {  
  11.             return null;  
  12.         }  
  13. }  
17 
2 
分享到:  
Apache Shiro 使用手册(五)Shiro 配置说 ... | Apache Shiro 使用手册(三)Shiro 授权
  • 2011-09-09 22:03
  • 浏览 24208
  • 评论(5)
  • 收藏
  • 分类:开源软件
  • 相关推荐
评论
5 楼 jayyunfei 2014-10-08   引用
cnaaaa 写道
大吓: 我情况是这样的

@Autowired(required = true)
private UserMapper userMapper;

/**
* 认证回调函数, 登录时调用.
*/
@Override
protected AuthenticationInfo doGetAuthenticationInfo(
AuthenticationToken authcToken) throws AuthenticationException {
UsernamePasswordToken token = (UsernamePasswordToken) authcToken;


User user = userMapper.findUserByLoginName(token.getUsername());

其中 的 userMapper是用mybatis生成的userMapper

但在doGetAuthenticationInfo引用 的时候 为null 在其他控制器里是正常的,是什么问题???

有没有注入,在配置文件中,这个shiro应该有个配置文件的,你把这个usermapper注入到你重写的类中在配置文件中配置,应该就可以了。
4 楼 cnaaaa 2014-09-30   引用
大吓: 我情况是这样的

@Autowired(required = true)
private UserMapper userMapper;

/**
* 认证回调函数, 登录时调用.
*/
@Override
protected AuthenticationInfo doGetAuthenticationInfo(
AuthenticationToken authcToken) throws AuthenticationException {
UsernamePasswordToken token = (UsernamePasswordToken) authcToken;


User user = userMapper.findUserByLoginName(token.getUsername());

其中 的 userMapper是用mybatis生成的userMapper

但在doGetAuthenticationInfo引用 的时候 为null 在其他控制器里是正常的,是什么问题???
3 楼 jayyunfei 2013-12-13   引用
我是改变 写道
在applicationContext-shiro.xml:
<!-- 項目自定义的Realm, 所有accountService依赖的dao都需要用depends-on声明 -->
<bean id="shiroDbRealm" class="com.inmabeidou.inma.service.account.ShiroDbRealm" depends-on="userDao, uscaDao">
<property name="userService" ref="userService"/>
</bean>

谢谢,虽然问题已经解决,还是谢谢。
2 楼 我是改变 2013-12-11   引用
在applicationContext-shiro.xml:
<!-- 項目自定义的Realm, 所有accountService依赖的dao都需要用depends-on声明 -->
<bean id="shiroDbRealm" class="com.inmabeidou.inma.service.account.ShiroDbRealm" depends-on="userDao, uscaDao">
<property name="userService" ref="userService"/>
</bean>
1 楼 jayyunfei 2013-07-05   引用
请教一个问题:
我在重写这个doGetAuthenticationInfo方法的时候我把userServiceImpl注入了自定的Realm类为什么调用不了其中的方法,总是不能执行,但是这些方法在其他类中就能执行。
0 0