当前位置:   article > 正文

Spring Boot2 集成 Shiro 实现用户权限管理_shiro实现权限管理

shiro实现权限管理

前言

目前只要做WEB管理系统,从单个系统的权限管理以及到多个系统统一权限管理,用户权限管理是必须实现的功能,目前比较常见的权限架构有shiro和spring security,两个都比较优秀。

一 常见权限架构

1.1 Shiro

     Apache Shiro是Java的一个安全框架。目前,使用Apache Shiro的人越来越多,因为它相当简单,对比Spring Security,可能没有Spring Security做的功能强大,但是在实际工作时可能并不需要那么复杂的东西,所以使用小而简单的Shiro就足够了。对于它俩到底哪个好,这个不必纠结,能更简单的解决项目问题就好了。

1.2 Spring Security

     Spring Security是一个能够为基于Spring的企业应用系统提供声明式的安全访问控制解决方案的安全框架。它提供了一组可以在Spring应用上下文中配置的Bean,充分利用了Spring IoC,DI(控制反转Inversion of Control ,DI:Dependency Injection 依赖注入)和AOP(面向切面编程)功能,为应用系统提供声明式的安全访问控制功能,减少了为企业系统安全控制编写大量重复代码的工作。它是一个轻量级的安全框架,它确保基于Spring的应用程序提供身份验证和授权支持。它与Spring MVC有很好地集成,并配备了流行的安全算法实现捆绑在一起。安全主要包括两个操作“认证”与“验证”(有时候也会叫做权限控制)。“认证”是为用户建立一个其声明的角色的过程,这个角色可以一个用户、一个设备或者一个系统。“验证”指的是一个用户在你的应用中能够执行某个操作。在到达授权判断之前,角色已经在身份认证过程中建立了。

1.3 Shiro和Spring Security比较
(1)Shiro比Spring更容易使用,实现和最重要的理解
(2)Spring Security更加知名的唯一原因是因为品牌名称
(3)“Spring”以简单而闻名,但讽刺的是很多人发现安装Spring Security很难
(4)Spring Security却有更好的社区支持
(5)Apache Shiro在Spring Security处理密码学方面有一个额外的模块
(6)Spring-security 对spring 结合较好,如果项目用的springmvc ,使用起来很方便。但是如果项目中没有用到spring,那就不要考虑它了。
(7)Shiro 功能强大、且 简单、灵活。是Apache 下的项目比较可靠,且不跟任何的框架或者容器绑定,可以独立运行

二 Shiro简介

2.1 概念

Apache Shiro 是 Java 的一个安全框架。目前,使用 Apache Shiro 的人越来越多,因为它相当简单,对比 Spring Security,可能没有 Spring Security 做的功能强大,但是在实际工作时可能并不需要那么复杂的东西,所以使用小而简单的 Shiro 就足够了。对于它俩到底哪个好,这个不必纠结,能更简单的解决项目问题就好了。

本教程只介绍基本的 Shiro 使用,不会过多分析源码等,重在使用。

Shiro 可以非常容易的开发出足够好的应用,其不仅可以用在 JavaSE 环境,也可以用在 JavaEE 环境。Shiro 可以帮助我们完成:认证、授权、加密、会话管理、与 Web 集成、缓存等。这不就是我们想要的嘛,而且 Shiro 的 API 也是非常简单;其基本功能点如下图所示:

Authentication:身份认证 / 登录,验证用户是不是拥有相应的身份;

Authorization:授权,即权限验证,验证某个已认证的用户是否拥有某个权限;即判断用户是否能做事情,常见的如:验证某个用户是否拥有某个角色。或者细粒度的验证某个用户对某个资源是否具有某个权限;

Session Management:会话管理,即用户登录后就是一次会话,在没有退出之前,它的所有信息都在会话中;会话可以是普通 JavaSE 环境的,也可以是如 Web 环境的;

Cryptography:加密,保护数据的安全性,如密码加密存储到数据库,而不是明文存储;

Web Support:Web 支持,可以非常容易的集成到 Web 环境;

Caching:缓存,比如用户登录后,其用户信息、拥有的角色 / 权限不必每次去查,这样可以提高效率;

Concurrency:shiro 支持多线程应用的并发验证,即如在一个线程中开启另一个线程,能把权限自动传播过去;

Testing:提供测试支持;

Run As:允许一个用户假装为另一个用户(如果他们允许)的身份进行访问;

Remember Me:记住我,这个是非常常见的功能,即一次登录后,下次再来的话不用登录了。

记住一点,Shiro 不会去维护用户、维护权限;这些需要我们自己去设计 / 提供;然后通过相应的接口注入给 Shiro 即可。

接下来我们分别从外部和内部来看看 Shiro 的架构,对于一个好的框架,从外部来看应该具有非常简单易于使用的 API,且 API 契约明确;从内部来看的话,其应该有一个可扩展的架构,即非常容易插入用户自定义实现,因为任何框架都不能满足所有需求。

首先,我们从外部来看 Shiro 吧,即从应用程序角度的来观察如何使用 Shiro 完成工作。如下图:

可以看到:应用代码直接交互的对象是 Subject,也就是说 Shiro 的对外 API 核心就是 Subject;其每个 API 的含义:

Subject:主体,代表了当前 “用户”,这个用户不一定是一个具体的人,与当前应用交互的任何东西都是 Subject,如网络爬虫,机器人等;即一个抽象概念;所有 Subject 都绑定到 SecurityManager,与 Subject 的所有交互都会委托给 SecurityManager;可以把 Subject 认为是一个门面;SecurityManager 才是实际的执行者;

SecurityManager:安全管理器;即所有与安全有关的操作都会与 SecurityManager 交互;且它管理着所有 Subject;可以看出它是 Shiro 的核心,它负责与后边介绍的其他组件进行交互,如果学习过 SpringMVC,你可以把它看成 DispatcherServlet 前端控制器;

Realm:域,Shiro 从从 Realm 获取安全数据(如用户、角色、权限),就是说 SecurityManager 要验证用户身份,那么它需要从 Realm 获取相应的用户进行比较以确定用户身份是否合法;也需要从 Realm 得到用户相应的角色 / 权限进行验证用户是否能进行操作;可以把 Realm 看成 DataSource,即安全数据源。

也就是说对于我们而言,最简单的一个 Shiro 应用:

  • 应用代码通过 Subject 来进行认证和授权,而 Subject 又委托给 SecurityManager;
  • 我们需要给 Shiro 的 SecurityManager 注入 Realm,从而让 SecurityManager 能得到合法的用户及其权限进行判断。

从以上也可以看出,Shiro 不提供维护用户 / 权限,而是通过 Realm 让开发人员自己注入。

接下来我们来从 Shiro 内部来看下 Shiro 的架构,如下图所示:

Subject:主体,可以看到主体可以是任何可以与应用交互的 “用户”;

SecurityManager:相当于 SpringMVC 中的 DispatcherServlet 或者 Struts2 中的 FilterDispatcher;是 Shiro 的心脏;所有具体的交互都通过 SecurityManager 进行控制;它管理着所有 Subject、且负责进行认证和授权、及会话、缓存的管理。

Authenticator:认证器,负责主体认证的,这是一个扩展点,如果用户觉得 Shiro 默认的不好,可以自定义实现;其需要认证策略(Authentication Strategy),即什么情况下算用户认证通过了;

Authrizer:授权器,或者访问控制器,用来决定主体是否有权限进行相应的操作;即控制着用户能访问应用中的哪些功能;

Realm:可以有 1 个或多个 Realm,可以认为是安全实体数据源,即用于获取安全实体的;可以是 JDBC 实现,也可以是 LDAP 实现,或者内存实现等等;由用户提供;注意:Shiro 不知道你的用户 / 权限存储在哪及以何种格式存储;所以我们一般在应用中都需要实现自己的 Realm;

SessionManager:如果写过 Servlet 就应该知道 Session 的概念,Session 呢需要有人去管理它的生命周期,这个组件就是 SessionManager;而 Shiro 并不仅仅可以用在 Web 环境,也可以用在如普通的 JavaSE 环境、EJB 等环境;所以呢,Shiro 就抽象了一个自己的 Session 来管理主体与应用之间交互的数据;这样的话,比如我们在 Web 环境用,刚开始是一台 Web 服务器;接着又上了台 EJB 服务器;这时想把两台服务器的会话数据放到一个地方,这个时候就可以实现自己的分布式会话(如把数据放到 Memcached 服务器);

SessionDAO:DAO 大家都用过,数据访问对象,用于会话的 CRUD,比如我们想把 Session 保存到数据库,那么可以实现自己的 SessionDAO,通过如 JDBC 写到数据库;比如想把 Session 放到 Memcached 中,可以实现自己的 Memcached SessionDAO;另外 SessionDAO 中可以使用 Cache 进行缓存,以提高性能;

CacheManager:缓存控制器,来管理如用户、角色、权限等的缓存的;因为这些数据基本上很少去改变,放到缓存中后可以提高访问的性能

Cryptography:密码模块,Shiro 提供了一些常见的加密组件用于如密码加密 / 解密的。

到此 Shiro 架构及其组件就认识完了,接下来挨着学习 Shiro 的组件吧。

2.2 核心组件

2.2.1 Subject

    Subject:即“当前操作用发户”。但是,在Shiro中,Subject这一概念并不仅仅指人,也可以是第三方进程、后台帐户(Daemon Account)或其他类似事物。它仅仅意味着“当前跟软件交互的东西”。但考虑到大多数目的和用途,你可以把它认为是Shiro的“用户”概念。Subject代表了当前用户的安全操作,SecurityManager则管理所有用户的安全操作。

2.2.2 SecurityManager

    SecurityManager:它是Shiro框架的核心,典型的Facade模式,Shiro通过SecurityManager来管理内部组件实例,并通过它来提供安全管理的各种服务。

2.2.2 Realm

    Realm充当了Shiro与应用安全数据间的“桥梁”或者“连接器”。也就是说,当对用户执行认证(登录)和授权(访问控制)验证时,Shiro会从应用配置的Realm中查找用户及其权限信息。
  从这个意义上讲,Realm实质上是一个安全相关的DAO:它封装了数据源的连接细节,并在需要时将相关数据提供给Shiro。当配置Shiro时,你必须至少指定一个Realm,用于认证和(或)授权。配置多个Realm是可以的,但是至少需要一个。
  Shiro内置了可以连接大量安全数据源(又名目录)的Realm,如LDAP、关系数据库(JDBC)、类似INI的文本配置资源以及属性文件等。如果缺省的Realm不能满足需求,你还可以插入代表自定义数据源的自己的Realm实现。

2.3. Shiro 特点

(1)易于理解的 Java Security API;
(2)简单的身份认证(登录),支持多种数据源(LDAP,JDBC,Kerberos,ActiveDirectory 等);
(3)对角色的简单的签权(访问控制),支持细粒度的签权;
(4)支持一级缓存,以提升应用程序的性能;
(5)内置的基于 POJO 企业会话管理,适用于 Web 以及非 Web 的环境;
(6)异构客户端会话访问;
(7)非常简单的加密 API;
(8)不跟任何的框架或者容器捆绑,可以独立运行。

三 Spring Boot2 实现

创建Spring Boot2项目,项目名称:spring-boot2-shiro-upms,版本:2.3.0

3.1 pom.xml

  1. <!--shiro-->
  2. <dependency>
  3. <groupId>org.apache.shiro</groupId>
  4. <artifactId>shiro-spring</artifactId>
  5. <version>1.4.0</version>
  6. </dependency>

3.2 ShiroConfig 配置

  1. package com.modules.common.config;
  2. import com.modules.common.utils.SHA256Util;
  3. import com.modules.shiro.ShiroRealm;
  4. import com.modules.shiro.ShiroSessionIdGenerator;
  5. import com.modules.shiro.ShiroSessionManager;
  6. import org.apache.shiro.authc.credential.HashedCredentialsMatcher;
  7. import org.apache.shiro.cache.MemoryConstrainedCacheManager;
  8. import org.apache.shiro.mgt.SecurityManager;
  9. import org.apache.shiro.session.mgt.SessionManager;
  10. import org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor;
  11. import org.apache.shiro.spring.web.ShiroFilterFactoryBean;
  12. import org.apache.shiro.web.mgt.DefaultWebSecurityManager;
  13. import org.apache.shiro.web.servlet.SimpleCookie;
  14. import org.apache.shiro.web.session.mgt.DefaultWebSessionManager;
  15. import org.springframework.beans.factory.annotation.Value;
  16. import org.springframework.context.annotation.Bean;
  17. import org.springframework.context.annotation.Configuration;
  18. import java.util.LinkedHashMap;
  19. import java.util.Map;
  20. /**
  21. * @Auther: lc
  22. * @Date: 2020/3/19 10:49
  23. * @Description: Shiro配置类
  24. */
  25. @Configuration
  26. public class ShiroConfig {
  27. @Value("${spring.shiro.cache-key}")
  28. private String CACHE_KEY;
  29. @Value("${spring.shiro.session-key}")
  30. private String SESSION_KEY;
  31. @Value("${spring.shiro.redis.expire}")
  32. private int EXPIRE;
  33. /**
  34. * 开启Shiro-aop注解支持
  35. *
  36. * @Attention 使用代理方式所以需要开启代码支持
  37. * @Author lc
  38. */
  39. @Bean
  40. public AuthorizationAttributeSourceAdvisor authorizationAttributeSourceAdvisor(SecurityManager securityManager) {
  41. AuthorizationAttributeSourceAdvisor authorizationAttributeSourceAdvisor = new AuthorizationAttributeSourceAdvisor();
  42. authorizationAttributeSourceAdvisor.setSecurityManager(securityManager);
  43. return authorizationAttributeSourceAdvisor;
  44. }
  45. /**
  46. * Shiro基础配置
  47. *
  48. * @Author lc
  49. */
  50. @Bean
  51. public ShiroFilterFactoryBean shiroFilterFactory(SecurityManager securityManager) {
  52. ShiroFilterFactoryBean shiroFilterFactoryBean = new ShiroFilterFactoryBean();
  53. shiroFilterFactoryBean.setSecurityManager(securityManager);
  54. Map<String, String> filterChainDefinitionMap = new LinkedHashMap<>();
  55. // 注意过滤器配置顺序不能颠倒
  56. // 配置过滤:不会被拦截的链接
  57. filterChainDefinitionMap.put("/statics/**", "anon");
  58. filterChainDefinitionMap.put("/js/**", "anon");
  59. filterChainDefinitionMap.put("/doc.html", "anon");
  60. filterChainDefinitionMap.put("/swagger-ui.html", "anon");
  61. filterChainDefinitionMap.put("/swagger-resources/**", "anon");
  62. filterChainDefinitionMap.put("/image/**", "anon");
  63. filterChainDefinitionMap.put("/v2/api-docs", "anon");
  64. filterChainDefinitionMap.put("/webjars/**", "anon");
  65. // filterChainDefinitionMap.put("/home/**", "anon");
  66. filterChainDefinitionMap.put("/user/**", "anon");
  67. //加权限
  68. // filterChainDefinitionMap.put("/**", "authc");
  69. //不加权限
  70. filterChainDefinitionMap.put("/**", "anon");
  71. // 配置shiro默认登录界面地址,前后端分离中登录界面跳转应由前端路由控制,后台仅返回json数据
  72. shiroFilterFactoryBean.setLoginUrl("/user/loginUnauth");
  73. // shiroFilterFactoryBean.setLoginUrl(JSON.toJSONString(Result.unauth()));
  74. shiroFilterFactoryBean.setFilterChainDefinitionMap(filterChainDefinitionMap);
  75. return shiroFilterFactoryBean;
  76. }
  77. /**
  78. * 安全管理器
  79. *
  80. * @Author lc
  81. */
  82. @Bean
  83. public SecurityManager securityManager() {
  84. DefaultWebSecurityManager securityManager = new DefaultWebSecurityManager();
  85. // 自定义Ssession管理
  86. securityManager.setSessionManager(sessionManager());
  87. // 自定义Cache实现
  88. // securityManager.setCacheManager(cacheManager());
  89. // 自定义Realm验证
  90. securityManager.setRealm(shiroRealm());
  91. return securityManager;
  92. }
  93. /**
  94. * 身份验证器
  95. *
  96. * @Author lc
  97. */
  98. @Bean
  99. public ShiroRealm shiroRealm() {
  100. ShiroRealm shiroRealm = new ShiroRealm();
  101. shiroRealm.setCredentialsMatcher(hashedCredentialsMatcher());
  102. // 相关认证缓存到cache中
  103. shiroRealm.setCacheManager(new MemoryConstrainedCacheManager());
  104. return shiroRealm;
  105. }
  106. /**
  107. * 凭证匹配器
  108. * 将密码校验交给Shiro的SimpleAuthenticationInfo进行处理,在这里做匹配配置
  109. *
  110. * @Author lc
  111. */
  112. @Bean
  113. public HashedCredentialsMatcher hashedCredentialsMatcher() {
  114. HashedCredentialsMatcher shaCredentialsMatcher = new HashedCredentialsMatcher();
  115. // 散列算法:这里使用SHA256算法;
  116. shaCredentialsMatcher.setHashAlgorithmName(SHA256Util.HASH_ALGORITHM_NAME);
  117. // 散列的次数,比如散列两次,相当于 md5(md5(""));
  118. shaCredentialsMatcher.setHashIterations(SHA256Util.HASH_ITERATIONS);
  119. return shaCredentialsMatcher;
  120. }
  121. /**
  122. * 配置Session管理器
  123. *
  124. * @Author lc
  125. */
  126. @Bean
  127. public SessionManager sessionManager() {
  128. ShiroSessionManager shiroSessionManager = new ShiroSessionManager();
  129. //设置session过期时间
  130. shiroSessionManager.setGlobalSessionTimeout(EXPIRE);
  131. // 去掉shiro登录时url里的JSESSIONID
  132. shiroSessionManager.setSessionIdUrlRewritingEnabled(false);
  133. return shiroSessionManager;
  134. }
  135. /**
  136. * SessionID生成器
  137. *
  138. * @Author lc
  139. */
  140. @Bean
  141. public ShiroSessionIdGenerator sessionIdGenerator() {
  142. return new ShiroSessionIdGenerator();
  143. }
  144. /**
  145. * 配置保存sessionId的cookie
  146. * 注意:这里的cookie 不是上面的记住我 cookie 记住我需要一个cookie session管理 也需要自己的cookie
  147. * 默认为: JSESSIONID 问题: 与SERVLET容器名冲突,重新定义为 token
  148. */
  149. @Bean
  150. public SimpleCookie sessionIdCookie() {
  151. //这个参数是cookie的名称,设置sessionId的名称为 token
  152. SimpleCookie simpleCookie = new SimpleCookie("token");
  153. //setcookie的httponly属性如果设为true的话,会增加对xss防护的安全系数。它有以下特点:
  154. //setcookie()的第七个参数
  155. //设为true后,只能通过http访问,javascript无法访问
  156. //防止xss读取cookie
  157. simpleCookie.setHttpOnly(true);
  158. simpleCookie.setPath("/");
  159. //maxAge=-1表示浏览器关闭时失效此Cookie
  160. simpleCookie.setMaxAge(-1);
  161. return simpleCookie;
  162. }
  163. }

3.3 域对象配置

  1. package com.modules.shiro;
  2. import com.modules.common.enmus.PublicEnum;
  3. import com.modules.system.entity.SysUser;
  4. import com.modules.system.service.SysMenuService;
  5. import com.modules.system.service.SysRoleService;
  6. import com.modules.system.service.SysUserService;
  7. import org.apache.shiro.authc.*;
  8. import org.apache.shiro.authz.AuthorizationInfo;
  9. import org.apache.shiro.authz.SimpleAuthorizationInfo;
  10. import org.apache.shiro.realm.AuthorizingRealm;
  11. import org.apache.shiro.subject.PrincipalCollection;
  12. import org.apache.shiro.util.ByteSource;
  13. import org.springframework.beans.factory.annotation.Autowired;
  14. import java.util.HashSet;
  15. import java.util.Set;
  16. /**
  17. * @Auther: lc
  18. * @Date: 2020/3/19 10:37
  19. * @Description: Shiro权限匹配和账号密码匹配
  20. */
  21. public class ShiroRealm extends AuthorizingRealm {
  22. @Autowired
  23. private SysUserService userService;
  24. @Autowired
  25. private SysRoleService sysRoleService;
  26. @Autowired
  27. private SysMenuService sysMenuService;
  28. /**
  29. * 授权权限
  30. * 用户进行权限验证时候Shiro会去缓存中找,如果查不到数据,会执行这个方法去查权限,并放入缓存中
  31. *
  32. * @Author lc
  33. */
  34. @Override
  35. protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principalCollection) {
  36. SimpleAuthorizationInfo authorizationInfo = new SimpleAuthorizationInfo();
  37. SysUser user = (SysUser) principalCollection.getPrimaryPrincipal();
  38. //获取用户ID
  39. long userId = user.getUserId();
  40. //这里可以进行授权和处理
  41. Set<String> rolesSet = new HashSet<>();
  42. Set<String> permsSet = new HashSet<>();
  43. // 查询角色
  44. rolesSet = sysRoleService.selectRoleKeys(userId);
  45. // 查询权限
  46. permsSet = sysMenuService.selectPermsByUserId(userId);
  47. // 放入角色
  48. authorizationInfo.setRoles(rolesSet);
  49. // 放入菜单
  50. authorizationInfo.setStringPermissions(permsSet);
  51. return authorizationInfo;
  52. }
  53. /**
  54. * 身份认证
  55. *
  56. * @Author lc
  57. */
  58. @Override
  59. protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken authenticationToken) throws AuthenticationException {
  60. //获取用户的输入的账号.
  61. String username = (String) authenticationToken.getPrincipal();
  62. //通过username从数据库中查找 User对象,如果找到进行验证
  63. //实际项目中,这里可以根据实际情况做缓存,如果不做,Shiro自己也是有时间间隔机制,2分钟内不会重复执行该方法
  64. SysUser user = userService.selectUserByLoginName(username);
  65. //判断账号是否存在
  66. if (user == null) {
  67. throw new AuthenticationException();
  68. }
  69. //判断账号是否停用
  70. if (user.getStatus() == null || PublicEnum.DISABLE.getCode().equals(user.getStatus())) {
  71. throw new LockedAccountException();
  72. }
  73. //进行验证
  74. SimpleAuthenticationInfo authenticationInfo = new SimpleAuthenticationInfo(
  75. user, //用户名
  76. user.getPassword(), //密码
  77. ByteSource.Util.bytes(user.getSalt()), //设置盐值
  78. getName()
  79. );
  80. return authenticationInfo;
  81. }
  82. }

3.4 SHA256Util 加密工具类

  1. package com.modules.common.utils;
  2. import org.apache.shiro.crypto.hash.SimpleHash;
  3. /**
  4. * @Auther: lc
  5. * @Date: 2020/3/19 10:28
  6. * @Description: Sha-256加密工具
  7. */
  8. public class SHA256Util {
  9. /**
  10. * 私有构造器
  11. **/
  12. private SHA256Util() {
  13. }
  14. ;
  15. /**
  16. * 加密算法
  17. **/
  18. public final static String HASH_ALGORITHM_NAME = "SHA-256";
  19. /**
  20. * 循环次数
  21. **/
  22. public final static int HASH_ITERATIONS = 15;
  23. /**
  24. * 执行加密-采用SHA256加密
  25. **/
  26. public static String sha256(String password, String salt) {
  27. return new SimpleHash(HASH_ALGORITHM_NAME, password, salt, HASH_ITERATIONS).toString();
  28. }
  29. public static void main(String[] args) {
  30. System.out.println(sha256("admin123", "111"));
  31. }
  32. }

3.5 ShiroUtils工具类

  1. package com.modules.common.utils;
  2. import com.modules.system.entity.SysUser;
  3. import org.apache.shiro.SecurityUtils;
  4. import org.apache.shiro.session.Session;
  5. /**
  6. * @Auther: lc
  7. * @Date: 2020/3/19 10:32
  8. * @Description: Shiro工具类
  9. */
  10. public class ShiroUtils {
  11. /**
  12. * 私有构造器
  13. **/
  14. private ShiroUtils() {
  15. }
  16. /**
  17. * 获取当前用户Session
  18. *
  19. * @Return user 用户信息
  20. */
  21. public static Session getSession() {
  22. return SecurityUtils.getSubject().getSession();
  23. }
  24. /**
  25. * 用户登出
  26. *
  27. * @Author lc
  28. */
  29. public static void logout() {
  30. SecurityUtils.getSubject().logout();
  31. }
  32. /**
  33. * 获取当前用户信息
  34. *
  35. * @Author lc
  36. * @Return user 用户信息
  37. */
  38. public static SysUser getUserInfo() {
  39. return (SysUser) SecurityUtils.getSubject().getPrincipal();
  40. }
  41. }

3.6 自定义权限异常提示

  1. package com.modules.shiro;
  2. import com.modules.common.web.Result;
  3. import org.apache.shiro.authz.AuthorizationException;
  4. import org.springframework.web.bind.annotation.ControllerAdvice;
  5. import org.springframework.web.bind.annotation.ExceptionHandler;
  6. import org.springframework.web.bind.annotation.ResponseBody;
  7. /**
  8. * @Auther: lc
  9. * @Date: 2020/3/19 10:27
  10. * @Description: 自定义异常
  11. */
  12. @ControllerAdvice
  13. public class MyShiroException {
  14. /**
  15. * 处理Shiro权限拦截异常
  16. * 如果返回JSON数据格式请加上 @ResponseBody注解
  17. *
  18. * @Author lc
  19. * @Return Map<Object> 返回结果集
  20. */
  21. @ResponseBody
  22. @ExceptionHandler(value = AuthorizationException.class)
  23. public Result defaultErrorHandler() {
  24. return Result.unauth();
  25. }
  26. }

3.7 login登录

  1. package com.modules.system.controller;
  2. import com.modules.common.utils.IpUtils;
  3. import com.modules.common.utils.ShiroUtils;
  4. import com.modules.common.web.BaseController;
  5. import com.modules.common.web.Result;
  6. import com.modules.system.entity.SysUser;
  7. import com.modules.system.service.SysUserService;
  8. import io.swagger.annotations.Api;
  9. import io.swagger.annotations.ApiOperation;
  10. import io.swagger.annotations.ApiParam;
  11. import lombok.extern.slf4j.Slf4j;
  12. import org.apache.shiro.SecurityUtils;
  13. import org.apache.shiro.authc.*;
  14. import org.apache.shiro.subject.Subject;
  15. import org.springframework.beans.factory.annotation.Autowired;
  16. import org.springframework.web.bind.annotation.*;
  17. import javax.servlet.http.HttpServletRequest;
  18. import java.util.Date;
  19. /**
  20. * 登录管理
  21. *
  22. * @author lc
  23. */
  24. @Api(tags = "登录管理")
  25. @Slf4j
  26. @CrossOrigin
  27. @RestController
  28. @RequestMapping("/user")
  29. public class LoginController extends BaseController {
  30. @Autowired
  31. private SysUserService userService;
  32. /**
  33. * 登录
  34. *
  35. * @return
  36. */
  37. @ApiOperation(value = "用户登录", notes = "用户登录")
  38. @GetMapping(value = "/login")
  39. public Result login(HttpServletRequest request,
  40. @ApiParam(name = "loginName", value = "登录账号") @RequestParam(value = "loginName") String loginName,
  41. @ApiParam(name = "password", value = "密码") @RequestParam(value = "password") String password) {
  42. SysUser user = new SysUser();
  43. Subject subject = SecurityUtils.getSubject();
  44. UsernamePasswordToken token = new UsernamePasswordToken(loginName, password);
  45. try {
  46. subject.login(token);
  47. user = ShiroUtils.getUserInfo();
  48. user.setToken(ShiroUtils.getSession().getId().toString());
  49. } catch (UnknownAccountException un) {
  50. log.error("UnknownAccountException=====>未知账户");
  51. return error("未知账户");
  52. } catch (IncorrectCredentialsException ic) {
  53. log.error("IncorrectCredentialsException=====>密码不正确");
  54. return error("密码不正确");
  55. } catch (LockedAccountException lo) {
  56. log.error("LockedAccountException=====>账户已停用");
  57. return error("账户已停用");
  58. } catch (ExcessiveAttemptsException ex) {
  59. log.error("ExcessiveAttemptsException=====>用户名或密码错误次数过多");
  60. return error("用户名或密码错误次数过多");
  61. } catch (AuthenticationException au) {
  62. log.error("AuthenticationException=====>账号或者密码错误");
  63. return error("账号或者密码错误");
  64. } finally {
  65. try {
  66. user.setLoginDate(new Date());
  67. user.setLoginIp(IpUtils.getIpAddr(request));
  68. userService.updateByPrimaryKeySelective(user);
  69. } catch (Exception e) {
  70. log.error("IOException=====>更新账户登录信息异常!", e.getMessage());
  71. }
  72. }
  73. return success("登录成功", user);
  74. }
  75. /**
  76. * @Description: 退出登录
  77. * @author lc
  78. */
  79. @ApiOperation(value = "退出登录", notes = "退出登录")
  80. @GetMapping(value = "/logout")
  81. public Result logout() {
  82. ShiroUtils.logout();
  83. return success("退出成功");
  84. }
  85. /**
  86. * @Description: 未登陆,返回无权限提示
  87. * @author lc
  88. */
  89. @ApiOperation(value = "无权限", notes = "无权限")
  90. @GetMapping(value = "/loginUnauth")
  91. public Result loginUnauth() {
  92. return unauth();
  93. }
  94. }

3.8 application.properties配置

  1. server.port=8087
  2. server.servlet.context-path=/upms
  3. #启用优雅关机
  4. server.shutdown=graceful
  5. #缓冲10秒
  6. spring.lifecycle.timeout-per-shutdown-phase=10s
  7. # mysql连接
  8. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
  9. spring.datasource.url=jdbc:mysql://localhost:3306/upms?useUnicode=true&characterEncoding=UTF-8&userSSL=false&serverTimezone=GMT%2B8
  10. spring.datasource.username=root
  11. spring.datasource.password=111
  12. # druid web页面
  13. druid.login.enabled=false
  14. druid.login.username=druid
  15. druid.login.password=druid
  16. #druid连接池
  17. spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
  18. spring.datasource.initialSize=20
  19. spring.datasource.minIdle=30
  20. spring.datasource.maxActive=50
  21. spring.datasource.maxWait=60000
  22. spring.datasource.timeBetweenEvictionRunsMillis=60000
  23. spring.datasource.minEvictableIdleTimeMillis=300000
  24. spring.datasource.validationQuery=SELECT 'x'
  25. spring.datasource.testWhileIdle=true
  26. spring.datasource.testOnBorrow=true
  27. spring.datasource.testOnReturn=true
  28. spring.datasource.poolPreparedStatements=true
  29. spring.datasource.maxPoolPreparedStatementPerConnectionSize=20
  30. spring.datasource.filters=stat
  31. spring.datasource.connectionProperties:druid.stat.slowSqlMillis=5000
  32. # MyBatis 配置
  33. mybatis.mapper-locations=classpath*:mapper/**/*Mapper.xml
  34. # mybatis-plus 配置
  35. mybatis-plus.mapper-locations=classpath*:mapper/**/*Mapper.xml
  36. mybatis.configuration.jdbc-type-for-null=null
  37. #配置分页插件pagehelper
  38. pagehelper.helperDialect=mysql
  39. pagehelper.reasonable=true
  40. pagehelper.supportMethodsArguments=true
  41. pagehelper.params.count=countSql
  42. #日志配置
  43. logging.level.com.modules.project.dao=debug
  44. logging.level.com.modules.system.dao=debug
  45. # 设置时间
  46. spring.jackson.time-zone=GMT+8
  47. # 全局格式化日期
  48. spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
  49. #权限登录token
  50. spring.shiro.cache-key=shiro:cache:
  51. spring.shiro.session-key=shiro:session:
  52. # session过期时间,30天:2592000,30分钟:1800
  53. spring.shiro.redis.expire=2592000

四 源码

码云地址:spring-boot2-shiro-upms: spring-boot2-shiro-upms是精简的后台管理项目,基于Spring Boot2、Shiro、MyBatis等框架,包含:用户管理、菜单管理、权限管理、登录和权限控制等。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/534015
推荐阅读
相关标签
  

闽ICP备14008679号