SpringMVC整合Shiro

摘要: SpringMVC整合Shiro,Shiro是一个强大易用的Java安全框架,提供了认证、授权、加密和会话管理等功能。

第一步:配置web.xml

  1. <!-- 配置Shiro过滤器,先让Shiro过滤系统接收到的请求 -->
  2. <!-- 这里filter-name必须对应applicationContext.xml中定义的<bean id="shiroFilter"/> -->
  3. <!-- 使用[/*]匹配所有请求,保证所有的可控请求都经过Shiro的过滤 -->
  4. <!-- 通常会将此filter-mapping放置到最前面(即其他filter-mapping前面),以保证它是过滤器链中第一个起作用的 -->
  5. <filter>
  6. <filter-name>shiroFilter</filter-name>
  7. <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  8. <init-param>
  9. <!-- 该值缺省为false,表示生命周期由SpringApplicationContext管理,设置为true则表示由ServletContainer管理 -->
  10. <param-name>targetFilterLifecycle</param-name>
  11. <param-value>true</param-value>
  12. </init-param>
  13. </filter>
  14. <filter-mapping>
  15. <filter-name>shiroFilter</filter-name>
  16. <url-pattern>/*</url-pattern>
  17. </filter-mapping>

第二步:配置applicationContext.xml
  1. <!-- 继承自AuthorizingRealm的自定义Realm,即指定Shiro验证用户登录的类为自定义的ShiroDbRealm.java -->  
  2. <bean id="myRealm" class="com.jadyer.realm.MyRealm"/>  
  3.   
  4. <!-- Shiro默认会使用Servlet容器的Session,可通过sessionMode属性来指定使用Shiro原生Session -->  
  5. <!-- 即<property name="sessionMode" value="native"/>,详细说明见官方文档 -->  
  6. <!-- 这里主要是设置自定义的单Realm应用,若有多个Realm,可使用'realms'属性代替 -->  
  7. <bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">  
  8.     <property name="realm" ref="myRealm"/>  
  9. </bean>  
  10.   
  11. <!-- Shiro主过滤器本身功能十分强大,其强大之处就在于它支持任何基于URL路径表达式的、自定义的过滤器的执行 -->  
  12. <!-- Web应用中,Shiro可控制的Web请求必须经过Shiro主过滤器的拦截,Shiro对基于Spring的Web应用提供了完美的支持 -->  
  13. <bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">  
  14.     <!-- Shiro的核心安全接口,这个属性是必须的 -->  
  15.     <property name="securityManager" ref="securityManager"/>  
  16.     <!-- 要求登录时的链接(可根据项目的URL进行替换),非必须的属性,默认会自动寻找Web工程根目录下的"/login.jsp"页面 -->  
  17.     <property name="loginUrl" value="/"/>  
  18.     <!-- 登录成功后要跳转的连接(本例中此属性用不到,因为登录成功后的处理逻辑在LoginController里硬编码为main.jsp了) -->  
  19.     <!-- <property name="successUrl" value="/system/main"/> -->  
  20.     <!-- 用户访问未对其授权的资源时,所显示的连接 -->  
  21.     <!-- 若想更明显的测试此属性可以修改它的值,如unauthor.jsp,然后用[玄玉]登录后访问/admin/listUser.jsp就看见浏览器会显示unauthor.jsp -->  
  22.     <property name="unauthorizedUrl" value="/"/>  
  23.     <!-- Shiro连接约束配置,即过滤链的定义 -->  
  24.     <!-- 此处可配合我的这篇文章来理解各个过滤连的作用http://blog.csdn.net/jadyer/article/details/12172839 -->  
  25.     <!-- 下面value值的第一个'/'代表的路径是相对于HttpServletRequest.getContextPath()的值来的 -->  
  26.     <!-- anon:它对应的过滤器里面是空的,什么都没做,这里.do和.jsp后面的*表示参数,比方说login.jsp?main这种 -->  
  27.     <!-- authc:该过滤器下的页面必须验证后才能访问,它是Shiro内置的一个拦截器org.apache.shiro.web.filter.authc.FormAuthenticationFilter -->  
  28.     <property name="filterChainDefinitions">  
  29.         <value>  
  30.              /mydemo/login=anon  
  31.              /mydemo/getVerifyCodeImage=anon  
  32.              /main**=authc  
  33.              /user/info**=authc  
  34.              /admin/listUser**=authc,perms[admin:manage]  
  35.         </value>  
  36.     </property>
  37. </bean>  
  38.   
  39. <!-- 保证实现了Shiro内部lifecycle函数的bean执行 -->  
  40. <bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/>  
  41.   
  42. <!-- 开启Shiro的注解(如@RequiresRoles,@RequiresPermissions),需借助SpringAOP扫描使用Shiro注解的类,并在必要时进行安全逻辑验证 -->  
  43. <!-- 配置以下两个bean即可实现此功能 -->  
  44. <!-- Enable Shiro Annotations for Spring-configured beans. Only run after the lifecycleBeanProcessor has run -->  
  45. <!-- 由于本例中并未使用Shiro注解,故注释掉这两个bean(个人觉得将权限通过注解的方式硬编码在程序中,查看起来不是很方便,没必要使用) -->  
  46. <!--   
  47. <bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" depends-on="lifecycleBeanPostProcessor"/>  
  48.   <bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">  
  49.     <property name="securityManager" ref="securityManager"/>  
  50.   </bean>  
  51. -->

第三步:自定义的Realm类
  1. public class MyRealm extends AuthorizingRealm {  
  2.     /** 
  3.      * 为当前登录的Subject授予角色和权限 
  4.      * @see  经测试:本例中该方法的调用时机为需授权资源被访问时 
  5.      * @see  经测试:并且每次访问需授权资源时都会执行该方法中的逻辑,这表明本例中默认并未启用AuthorizationCache 
  6.      * @see  个人感觉若使用了Spring3.1开始提供的ConcurrentMapCache支持,则可灵活决定是否启用AuthorizationCache 
  7.      * @see  比如说这里从数据库获取权限信息时,先去访问Spring3.1提供的缓存,而不使用Shior提供的AuthorizationCache 
  8.      */  
  9.     @Override  
  10.     protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals){  
  11.         //获取当前登录的用户名,等价于(String)principals.fromRealm(this.getName()).iterator().next()  
  12.         String currentUsername = (String)super.getAvailablePrincipal(principals);  
  13. //      List<String> roleList = new ArrayList<String>();  
  14. //      List<String> permissionList = new ArrayList<String>();  
  15. //      //从数据库中获取当前登录用户的详细信息  
  16. //      User user = userService.getByUsername(currentUsername);  
  17. //      if(null != user){  
  18. //          //实体类User中包含有用户角色的实体类信息  
  19. //          if(null!=user.getRoles() && user.getRoles().size()>0){  
  20. //              //获取当前登录用户的角色  
  21. //              for(Role role : user.getRoles()){  
  22. //                  roleList.add(role.getName());  
  23. //                  //实体类Role中包含有角色权限的实体类信息  
  24. //                  if(null!=role.getPermissions() && role.getPermissions().size()>0){  
  25. //                      //获取权限  
  26. //                      for(Permission pmss : role.getPermissions()){  
  27. //                          if(!StringUtils.isEmpty(pmss.getPermission())){  
  28. //                              permissionList.add(pmss.getPermission());  
  29. //                          }  
  30. //                      }  
  31. //                  }  
  32. //              }  
  33. //          }  
  34. //      }else{  
  35. //          throw new AuthorizationException();  
  36. //      }  
  37. //      //为当前用户设置角色和权限  
  38. //      SimpleAuthorizationInfo simpleAuthorInfo = new SimpleAuthorizationInfo();  
  39. //      simpleAuthorInfo.addRoles(roleList);  
  40. //      simpleAuthorInfo.addStringPermissions(permissionList);  
  41.         SimpleAuthorizationInfo simpleAuthorInfo = new SimpleAuthorizationInfo();  
  42.         //实际中可能会像上面注释的那样从数据库取得  
  43.         if(null!=currentUsername && "mike".equals(currentUsername)){  
  44.             //添加一个角色,不是配置意义上的添加,而是证明该用户拥有admin角色    
  45.             simpleAuthorInfo.addRole("admin");  
  46.             //添加权限  
  47.             simpleAuthorInfo.addStringPermission("admin:manage");  
  48.             System.out.println("已为用户[mike]赋予了[admin]角色和[admin:manage]权限");  
  49.             return simpleAuthorInfo;  
  50.         }
  51.         //若该方法什么都不做直接返回null的话,就会导致任何用户访问/admin/listUser.jsp时都会自动跳转到unauthorizedUrl指定的地址  
  52.         //详见applicationContext.xml中的<bean id="shiroFilter">的配置  
  53.         return null;  
  54.     }  
  55.   
  56.       
  57.     /** 
  58.      * 验证当前登录的Subject 
  59.      * @see  经测试:本例中该方法的调用时机为LoginController.login()方法中执行Subject.login()时 
  60.      */  
  61.     @Override  
  62.     protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken authcToken) throws AuthenticationException {  
  63.         //获取基于用户名和密码的令牌  
  64.         //实际上这个authcToken是从LoginController里面currentUser.login(token)传过来的  
  65.         //两个token的引用都是一样的
  66.         UsernamePasswordToken token = (UsernamePasswordToken)authcToken;  
  67.         System.out.println("验证当前Subject时获取到token为" + ReflectionToStringBuilder.toString(token, ToStringStyle.MULTI_LINE_STYLE));  
  68. //      User user = userService.getByUsername(token.getUsername());  
  69. //      if(null != user){  
  70. //          AuthenticationInfo authcInfo = new SimpleAuthenticationInfo(user.getUsername(), user.getPassword(), user.getNickname());  
  71. //          this.setSession("currentUser", user);  
  72. //          return authcInfo;  
  73. //      }else{  
  74. //          return null;  
  75. //      }  
  76.         //此处无需比对,比对的逻辑Shiro会做,我们只需返回一个和令牌相关的正确的验证信息  
  77.         //说白了就是第一个参数填登录用户名,第二个参数填合法的登录密码(可以是从数据库中取到的,本例中为了演示就硬编码了)  
  78.         //这样一来,在随后的登录页面上就只有这里指定的用户和密码才能通过验证  
  79.         if("mike".equals(token.getUsername())){  
  80.             AuthenticationInfo authcInfo = new SimpleAuthenticationInfo("mike", "mike", this.getName());  
  81.             this.setSession("currentUser", "mike");  
  82.             return authcInfo;  
  83.         }
  84.         //没有返回登录用户名对应的SimpleAuthenticationInfo对象时,就会在LoginController中抛出UnknownAccountException异常  
  85.         return null;  
  86.     }  
  87.       
  88.       
  89.     /** 
  90.      * 将一些数据放到ShiroSession中,以便于其它地方使用 
  91.      * @see  比如Controller,使用时直接用HttpSession.getAttribute(key)就可以取到 
  92.      */  
  93.     private void setSession(Object key, Object value){  
  94.         Subject currentUser = SecurityUtils.getSubject();  
  95.         if(null != currentUser){  
  96.             Session session = currentUser.getSession();  
  97.             System.out.println("Session默认超时时间为[" + session.getTimeout() + "]毫秒");  
  98.             if(null != session){  
  99.                 session.setAttribute(key, value);  
  100.             }  
  101.         }  
  102.     }  
  103. }






原文地址:https://www.cnblogs.com/jeffen/p/6187197.html