时间:2021-05-19
这篇文章主要介绍了shiro与spring集成基础Hello案例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
shiro的四大基石
导包
ini文件(再创建shiro.ini文件)文件中有咱们的用户角色权限
功能测试(一定要有测试包org.junit.Test才能测试)
主要测试登录,权限认证
@Testpublic void testHello() throws Exception{ //①.拿到权限管理对象 /** * 读取了shiro.ini的文件(隐藏了realm) -> 隐藏了iniRealm * SecurityManager:权限管理器,shiro的所有功能都放在里面 */ Factory<SecurityManager> factory = new IniSecurityManagerFactory("classpath:shiro.ini"); SecurityManager securityManager = factory.getInstance(); //②.相当于把SecurityManager放到了当前上下文 /** * 可以让我们在当前系统的任何位置都可以拿到SecurityManager对象 */ SecurityUtils.setSecurityManager(securityManager); //③.拿到当前用户(没有登录就是游客) Subject currentUser = SecurityUtils.getSubject(); System.out.println("用户是否登录:"+currentUser.isAuthenticated()); //④.如果没有登录,让他进行登录 if(!currentUser.isAuthenticated()){ //ctrl+alt+t :包含代码 try { //4.1 准备令牌(对象) 用户名密码令牌 UsernamePasswordToken token = new UsernamePasswordToken("guest","guest"); //4.2 进行登录功能 currentUser.login(token); } catch (UnknownAccountException e) { //Unknown(未知)Account(账号)Exception:用户名不存在 e.printStackTrace(); System.out.println("哥,你是傻子嘛?"); }catch (IncorrectCredentialsException e){ //Incorrect(不正确)Credentials(凭证)Exception:密码错误 e.printStackTrace(); System.out.println("哥,密码错误了?"); }catch (AuthenticationException e){ //AuthenticationException:登录中最大的那个异常 e.printStackTrace(); System.out.println("发生了一个神秘的错误!!!"); } } System.out.println("用户是否登录:"+currentUser.isAuthenticated()); System.out.println("是否是管理员角色:"+currentUser.hasRole("admin")); System.out.println("是否是IT角色:"+currentUser.hasRole("it")); System.out.println("是否可以操作employee:save权限:"+currentUser.isPermitted("employee:save")); System.out.println("是否可以操作employee:index权限:"+currentUser.isPermitted("employee:index")); System.out.println("是否可以操作department:index权限:"+currentUser.isPermitted("department:index")); //⑤.还可以登出(注销) currentUser.logout(); System.out.println("用户是否登录:"+currentUser.isAuthenticated());}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
这一篇文章涵盖了将Shiro集成到基于Spring的应用程序的方法。Shiro的JavaBean兼容性使它非常适合通过SpringXML或其他基于Spring的
与Spring3集成Spring作为基础框架,可以集成后端框架,如Hibernate,MyBatis等。前面是介绍单独使用MyBatis的,大致逻辑是:sqlS
前言SpringDataMongoDB项目提供与MongoDB文档数据库的集成,Spring与Hibernate集成时,Spring提供了org.springf
Shiro是一个轻量级的权限控制框架,应用非常广泛。本文的重点是介绍Spring整合Shiro,并通过扩展使用Spring的EL表达式,使@RequiresRo
Shiro提供了类似于Spring的Cache抽象,即Shiro本身不实现Cache,但是对Cache进行了又抽象,方便更换不同的底层Cache实现。Shiro