博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaWeb项目:Shiro实现简单的权限控制(整合SSM)
阅读量:6086 次
发布时间:2019-06-20

本文共 4342 字,大约阅读时间需要 14 分钟。

该demo整合Shiro的相关配置参考

数据库表格相关设计

这里写图片描述 

表格设计得比较简单,导航栏直接由角色表auth_role的角色描述vRoleDesc(父结点)和角色相关权限中的权限描述(标记为导航结点)vPermissionDesc(展开子项)组成。 
这里写图片描述

Shiro相关设置

密码输入错误次数限制

//密码重试5次次数限制 public class RetryLimitHashedCredentialsMatcher extends HashedCredentialsMatcher{ private Cache
passwordRetryCache; public RetryLimitHashedCredentialsMatcher(CacheManager cacheManager){ passwordRetryCache=cacheManager.getCache("passwordRetryCache"); } @Override public boolean doCredentialsMatch(AuthenticationToken token, AuthenticationInfo info) { String username=(String)token.getPrincipal(); AtomicInteger retryCount=passwordRetryCache.get(username); if(retryCount==null){ retryCount=new AtomicInteger(0); passwordRetryCache.put(username, retryCount); } if(retryCount.incrementAndGet()>5){ throw new ExcessiveAttemptsException(); } boolean matches= super.doCredentialsMatch(token, info);//匹配密码 if(matches){ passwordRetryCache.remove(username); } return matches; } }

 

相关配置:

 

使用缓存实现为ehcache,相关配置如下:

timeToIdleSeconds="3600"
timeToLiveSeconds="0" overflowToDisk="false" statistics="true">

 

扩展AuthorizingRealm:用于从数据库抓取密码等相关验证信息和相关权限信息

public class UserRealm extends AuthorizingRealm{ @Autowired private UserService userService; //获取相关授权信息 @Override protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) { String userName=(String)principals.getPrimaryPrincipal(); SimpleAuthorizationInfo authorizationInfo=new SimpleAuthorizationInfo(); authorizationInfo.setRoles(userService.findPermissionsByUserName(userName));//获取角色信息 authorizationInfo.setStringPermissions(userService.findPermissionsByUserName(userName));//获取权限信息 return authorizationInfo; } //获取身份验证信息 @Override protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException { String userName=(String)token.getPrincipal(); User user=userService.getUserByUserName(userName);//获取身份信息(密码和密码盐) if(user==null){ throw new UnknownAccountException(); } SimpleAuthenticationInfo authenticationInfo=new SimpleAuthenticationInfo( user.getUserName(), user.getPassword(), ByteSource.Util.bytes(user.getUserName()+user.getPasswordSalt()), getName()); return authenticationInfo; } }

 

登录相关

扩展FormAuthenticationFilter:用于登录后获取用户导航栏,并将其存入session范围

public class WithNavibarFormAuthenticationFilter extends FormAuthenticationFilter { @Autowired private UserService userService; @Override protected boolean onLoginSuccess(AuthenticationToken token, Subject subject, ServletRequest request, ServletResponse response) throws Exception { HttpServletRequest httpReq=(HttpServletRequest)request; String userName=(String)SecurityUtils.getSubject().getPrincipal(); List navigationBar=userService.getNavigationBar(userName); httpReq.getSession().setAttribute("navibar", navigationBar); return super.onLoginSuccess(token, subject, request, response); } }

 

登录Controller实现(用户密码不匹配情况下执行)

@Controller@RequestMapping("/user")public class UserController {    @Autowired    private UserService userService;    //...    @RequestMapping("/login")    public ModelAndView login(HttpServletRequest req){        String error=null;        String exceptionClassName = (String)req.getAttribute("shiroLoginFailure");        if(UnknownAccountException.class.getName().equals(exceptionClassName)) { error = "用户名/密码错误"; } else if(IncorrectCredentialsException.class.getName().equals(exceptionClassName)) { error = "用户名/密码错误"; } else if(exceptionClassName != null) { error = "其他错误:" + exceptionClassName; } ModelAndView mav=new ModelAndView("login"); mav.addObject("error", error); return mav; } //... }

 

登录表单代码:注意提交action=”“,以及输入控件name值须与form表单过滤器中的设置对应

 

最后通过Spring注解,控制访问

@RequiresPermissions("user:list")    @RequestMapping("/list")    public ModelAndView showUserList(){ // }

 

完整shiro配置如下:

转载于:https://www.cnblogs.com/weixupeng/p/8569643.html

你可能感兴趣的文章
选择排序(C语言实现) 分类: 数据结构 2015-...
查看>>
通过ADB查看当前Activity
查看>>
[模板] 各种并查集
查看>>
oracle表空间查看增加等操作
查看>>
windows Phone Push Notification
查看>>
EntityFramework6 in github
查看>>
bootstrap table处理后台返回的数据
查看>>
(译)Windsor入门教程---第一部分 获取Windsor
查看>>
Jquery实现图片轮播效果
查看>>
hibernate中懒加载和及加载的区别
查看>>
八皇后问题 思路
查看>>
[POI2018]Plan metra
查看>>
陶哲轩实分析 命题7.4.3 (级数的重排) 证明
查看>>
机器学习_线性回归
查看>>
Swift(一)简单值
查看>>
20172304 2018-2019-1 《程序设计与数据结构》课程总结
查看>>
(剑指Offer)------二进制中1的个数
查看>>
[转载]AxureRP使用参考建议
查看>>
[转载]版本发布模式有几种?
查看>>
40、开发者如何在同一个设备上安装同一个应用的不同版本
查看>>