目录
零、框架使用三步骤
1.使用框架为目的的三步骤:
2.已学习框架为目的的步骤:待完善
一、Shiro框架简介
二、Shiro框架架构
1.Shiro简单架构:Subject--SecurityManager--Realm
2.Shiro详细架构:
Shiro架构相关要素
Shiro架构常用功能
三、Shiro框架基本配置
1.Shiro依赖配置:Spring整合Shiro
2.Shiro组件配置
3.自己写一个Realm类,把这个类ShiroUserRealm.java注入安全管理器的Realm属性
4.在web.xm配置(委托过滤器代理DelegatingFilterProxy)Shiro中的核心过滤器,负责拦截过滤请求信息
四、Shiro框架应用
0.在数据库资源(菜单)表中添加权限标志符字段permission
1.登录认证大致流程 基于spring、半注解方式
Controller层代码示意
2.授权流程 基于spring、半注解方式
用户授权大致流程
授权检测:使用注解修饰方法method或class类
五、Shiro框架的SessionManager和CacheManager
Shiro缓存配置
1.添加Shiro缓存依赖
2.Shiro缓存的配置文件ehcache.xml
3.其他内容待更新
org.apache.shiro
shiro-spring
1.3.2
备注:官文+有道... Spring的Bean post处理器,它在实现可初始化或可销毁接口的Shiro对象上自动调用init()和/或destroy()方法。这个post处理器使在Spring中配置Shiro bean变得更加容易,因为用户不必担心是否必须指定init-method和-method bean属性。
自定义一个Realm类继承自授权域AuthorizingRealm,包含信息:
/**
* 此对象中要完成用户认证信息,授权信息
* 的获取和封装等业务操作。
*/
@Service
public class ShiroUserRealm extends AuthorizingRealm {
@Autowired
private SysUserDao sysUserDao;
@Autowired
private SysUserRoleDao sysUserRoleDao;
@Autowired
private SysRoleMenuDao sysRoleMenuDao;
@Autowired
private SysMenuDao sysMenuDao;
/**
* 指定加密算法和加密次数(默认就是1次)
* @param credentialsMatcher
*/
@Override
public void setCredentialsMatcher(CredentialsMatcher credentialsMatcher) {
HashedCredentialsMatcher hashMatcher=
new HashedCredentialsMatcher("MD5");
hashMatcher.setHashIterations(1);//默认加密次数为一次
super.setCredentialsMatcher(hashMatcher);
}
/**
* 负责用户认证信息的获取以及封装
*/
@Override//认证
protected AuthenticationInfo doGetAuthenticationInfo(
AuthenticationToken token) throws AuthenticationException {
System.out.println("doGetAuthenticationInfo");
//1.获取用户身份信息(例如用户名)
String userName=(String)token.getPrincipal();//身份(控制层提交)
//2.基于用户名访问数据库获取用户信息
SysUser user=sysUserDao.findUserByUserName(userName);
//3.对用户信息进行验证
//3.1验证是否为空(为空说明此此用户不存在)
if(user==null)
throw new UnknownAccountException();
//3.2验证此用户是否被禁用了(禁用则不允许登录)
if(user.getValid()==0)
throw new LockedAccountException();
//4.基于业务封装用户数据?(例如密码,盐值)
ByteSource credentialsSalt=
ByteSource.Util.bytes(user.getSalt());
SimpleAuthenticationInfo info=new SimpleAuthenticationInfo(
user, //principal (身份)
user.getPassword(),//hashedCredentials(已加密的密码)
credentialsSalt, //credentialsSalt
this.getName());//realmName(当前类的名字)
System.out.println("realmName="+this.getName());
return info;//将此值返回给认证管理器(Authentication)
}
/**负责用户授权信息({"sys:user:valid",...})
* 的获取及封装*/
@Override//授权
protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {
System.out.println("doGetAuthorizationInfo");
//1.获取用户id(基于此id逐步获取用户具备的权限)
SysUser user=(SysUser)principals.getPrimaryPrincipal();
//2.基于用户id获取角色信息(用户角色中间表:user_id,role_id)
List roleIds=sysUserRoleDao.findRoleIdsByUserId(user.getId());
//3.基于角色id获取菜单id(角色菜单关系表:role_id,menu_id)
List menuIds=
sysRoleMenuDao.findMenuIdsByRoleIds(
roleIds.toArray(new Integer[]{}));
//4.基于菜单id获取权限标识(例如"sys:user:valid")
List permissions=
sysMenuDao.findPermissions(
menuIds.toArray(new Integer[]{}));
//5.封装权限信息
SimpleAuthorizationInfo info=
new SimpleAuthorizationInfo();
Set perSet=new HashSet<>();
for(String per:permissions){
if(!StringUtils.isEmpty(per)){
perSet.add(per);
}
}
System.out.println("user.permissions="+perSet);
info.setStringPermissions(perSet);
return info;//此对象会传递给谁?授权管理器
}
}
shiroFilter
org.springframework.web.filter.DelegatingFilterProxy
targetBeanName
shiroFilterFactory
shiroFilter
/*
三表关系:用户对应角色,角色对应资源
@RequestMapping("/")
@Controller
public class SysLoginController {
@RequestMapping("doLoginUI")
public String doLoginUI(){
return "login";
}
@RequestMapping("doLogin")
@ResponseBody
public JsonResult doLogin(String username,String password){
//1.获取Subject对象
Subject subject=SecurityUtils.getSubject();
//2.通过Subject提交用户信息,交给shiro框架进行认证操作
//2.1对用户进行封装
UsernamePasswordToken token=
new UsernamePasswordToken(
username,//身份信息
password);//凭证信息
//2.2对用户信息进行身份认证
subject.login(token);
//分析:
//1)token会传给shiro的SecurityManager
//2)SecurityManager将token传递给认证管理器
//3)认证管理器会将token传递给realm
return new JsonResult("login ok");
}
}
//For example, this declaration:
@RequiresPermissions( {"file:read", "write:aFile.txt"} )
void someMethod();
@RequiresPermissions("sys:user:valid")
org.apache.shiro
shiro-ehcache
1.3.2