`

Shiro-权限管理之filterChainDefinitions过滤器配置

阅读更多
shiro三大核心模块:Subject(用户)、SecurityManager(框架心脏)、Realm(Shiro与应用安全数据间的“桥梁”)
SecurityManager去管理cacheManager缓存和sessionManager会话,sessionManager再去管理sessionDAO会话DAO 和sessionIdCookie会话ID生成器和sessionValidationScheduler会话验证调度器,cacheManager通过使用Ehcache实现,Realm通过自己自定义或者其他方式的权限存储来实现,比如登录等.
使用统一数据访问层

内置的FilterChain
=========================================================================================================
1)Shiro验证URL时,URL匹配成功便不再继续匹配查找(所以要注意配置文件中的URL顺序,尤其在使用通配符时)
  故filterChainDefinitions的配置顺序为自上而下,以最上面的为准
2)当运行一个Web应用程序时,Shiro将会创建一些有用的默认Filter实例,位置为shiro-web-xx.jar中的org.apache.shiro.web.filter包下
  anon---------------org.apache.shiro.web.filter.authc.AnonymousFilter
  authc--------------org.apache.shiro.web.filter.authc.FormAuthenticationFilter
  authcBasic---------org.apache.shiro.web.filter.authc.BasicHttpAuthenticationFilter
  logout-------------org.apache.shiro.web.filter.authc.LogoutFilter
  noSessionCreation--org.apache.shiro.web.filter.session.NoSessionCreationFilter
  perms--------------org.apache.shiro.web.filter.authz.PermissionAuthorizationFilter
  port---------------org.apache.shiro.web.filter.authz.PortFilter
  rest---------------org.apache.shiro.web.filter.authz.HttpMethodPermissionFilter
  roles--------------org.apache.shiro.web.filter.authz.RolesAuthorizationFilter
  ssl----------------org.apache.shiro.web.filter.authz.SslFilter
  user---------------org.apache.shiro.web.filter.authz.UserFilter
=========================================================================================================
3)通常可将这些过滤器分为两组
  anon,authc,authcBasic,user是第一组认证过滤器
  perms,port,rest,roles,ssl是第二组授权过滤器
  注意user和authc不同:当应用开启了rememberMe时,用户下次访问时可以是一个user,但绝不会是authc,因为authc是需要重新认证的
  user表示用户不一定已通过认证,只要曾被Shiro记住过登录状态的用户就可以正常发起请求,比如rememberMe
  说白了,以前的一个用户登录时开启了rememberMe,然后他关闭浏览器,下次再访问时他就是一个user,而不会authc
==========================================================================================================
4)举几个例子
  /admin=authc,roles[admin]      表示用户必需已通过认证,并拥有admin角色才可以正常发起'/admin'请求
  /edit=authc,perms[admin:edit]  表示用户必需已通过认证,并拥有admin:edit权限才可以正常发起'/edit'请求
  /home=user                     表示用户不一定需要已经通过认证,只需要曾经被Shiro记住过登录状态就可以正常发起'/home'请求
==========================================================================================================
5)各默认过滤器常用如下(注意URL Pattern里用到的是两颗星,这样才能实现任意层次的全匹配)
  /admins/**=anon             无参,表示可匿名使用,可以理解为匿名用户或游客
  /admins/user/**=authc       无参,表示需认证才能使用
  /admins/user/**=authcBasic  无参,表示httpBasic认证
  /admins/user/**=user        无参,表示必须存在用户,当登入操作时不做检查
  /admins/user/**=ssl         无参,表示安全的URL请求,协议为https
  /admins/user/**=perms[user:add:*]
   参数可写多个,多参时必须加上引号,且参数之间用逗号分割,如/admins/user/**=perms["user:add:*,user:modify:*"]
   当有多个参数时必须每个参数都通过才算通过,相当于isPermitedAll()方法
  /admins/user/**=port[8081]
    当请求的URL端口不是8081时,跳转到schemal://serverName:8081?queryString
    其中schmal是协议http或https等,serverName是你访问的Host,8081是Port端口,queryString是你访问的URL里的?后面的参数
  /admins/user/**=rest[user]
      根据请求的方法,相当于/admins/user/**=perms[user:method],其中method为post,get,delete等
  /admins/user/**=roles[admin]
    参数可写多个,多个时必须加上引号,且参数之间用逗号分割,如/admins/user/**=roles["admin,guest"]
    当有多个参数时必须每个参数都通过才算通过,相当于hasAllRoles()方法
6)支持使用自定义的权限拦截过滤器,
   <property name="filterChainDefinitions">
            <value>        
                /web/widget/**=anon
                /**=licenseFilter,authcFilter//自定义的权限过滤器
            </value>
        </property>

shiro退出的两种方式:
有两种方式实现logout
1. 普通的action中 实现自己的logout方法,取到Subject,然后logout
  SecurityUtils.getSubject().logout();
  SessionUtil.removeSessionUser();
这种需要在ShiroFilterFactoryBean 中配置 filterChainDefinitions
对应的action的url为anon
<property name="filterChainDefinitions">
            <value>
                # some example chain definitions:
                /index.htm = anon
                /logout = anon
                /unauthed = anon
                /console/** = anon
                /css/** = anon
                /js/** = anon
                /lib/** = anon
            </value>
</property>
2. 使用shiro提供的logout filter
需要定义 相应的bean
<bean id="logout" class="org.apache.shiro.web.filter.authc.LogoutFilter">
        <property name="redirectUrl" value="/loginform" />
    </bean>

然后将相应的url filter配置为logout如下
<property name="filterChainDefinitions">
            <value>              
                /index.htm = anon
                /logout = logout
                /unauthed = anon
                /console/** = anon
                /css/** = anon
                /js/** = anon
                /lib/** = anon
            </value>
</property>
分享到:
评论

相关推荐

    单点登录sso-shiro-cas-maven

    最后我们还需要在/spring-node-1/src/main/webapp/WEB-INF/web.xml 文件中配置相关的过滤器拦截全部请求 ``` xml &lt;filter-name&gt;shiroFilter&lt;/filter-name&gt; &lt;filter-class&gt;org.springframework.web.filter....

    shiro管理多登录入口配置,手机端登录与网页端登录

    总的来说,实现"shiro管理多登录入口配置,手机端登录与网页端登录"需要对 Shiro 的 Realm、过滤器和配置有深入理解,以及根据应用场景定制相应的登录验证流程。正确配置后,Shiro 可以有效地管理和保护不同入口的...

    springmvc+shiro配置教程

    在Web.xml文件中,我们需要定义Shiro的过滤器,以便拦截所有的请求。以下是一个基本的Web.xml配置文件: ```xml &lt;filter-name&gt;shiroFilter&lt;/filter-name&gt; &lt;filter-class&gt;org.springframework.web.filter....

    shiro 配置文件

    `ShiroFilter` 是 Shiro 提供的核心过滤器,负责拦截请求并执行相应的安全逻辑。而 `DelegatingFilterProxy` 则是 Spring 提供的 Filter,用于代理 Spring 管理的 Bean,通常用来指向 Spring 配置中的 Shiro 相关 ...

    shiroFilter权限验证

    首先我们在web.xml配置的过滤器实际上是配置ShiroFilterFactoryBean,所以在这里需要将ShiroFilterFactoryBean定义为shiroFilter &lt;bean id="shiroFilter" class="org.apache.shiro.spring.web....

    SSM整合shiro实现角色权限

    Shiro提供了多种内置过滤器,如authc(认证过滤器)、perms(权限过滤器)等,可以根据需求进行配置: ```xml &lt;bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean"&gt; &lt;!-- 配置...

    Spring Boot整合Shiro搭建权限管理系统.pdf

    - 创建`ShiroConfig`类,进行Shiro的配置,包括 Realm(领域对象)、过滤器链定义等。 ```java @Configuration public class ShiroConfig { // 配置Realm @Bean public MyRealm myRealm() { return new ...

    shiro 与 spring 整合、动态过滤链、以及认证、授权.docx

    例如,设置 `contextConfigLocation` 参数来指定 Spring 应用上下文配置文件的位置,并使用 `DelegatingFilterProxy` 作为 Shiro 过滤器,确保过滤器生命周期与 Spring 管理的 bean 生命周期同步。 ```xml &lt;context...

    非maven的ssm整合shiro

    2. **配置Shiro**: 在Spring配置文件中,定义Shiro的`SecurityManager`,通常使用`org.apache.shiro.spring.web.ShiroFilterFactoryBean`来创建过滤器。配置包括设置安全管理器、Realm(认证和授权信息的来源)和...

    shiro与spring web 项目集成.pdf

    - 确保ShiroFilter正确配置,包括过滤器链、登录URL、未授权URL和成功URL。 - 确保SecurityManager已经配置并适用于项目。 - 遵循Shiro的安全最佳实践,确保认证和授权机制得到合理应用。 ### 结语 Shiro与Spring ...

    Shiro权限框架文档

    整体而言,文档通过实例介绍了如何在Spring框架中整合Shiro权限框架,给出了Web应用中安全控制的配置方式,包括Shiro过滤器的部署、SecurityManager的配置以及如何实现自定义的Realm来整合用户认证和授权逻辑。...

    springmvc shiro

    - 过滤器链设置:Shiro通过一系列过滤器实现安全控制,如authc(认证过滤器)、perms(权限过滤器)等。需要在web.xml中配置这些过滤器,并将它们指向Spring管理的Bean。 - Controller层集成:在Controller方法上...

    shiro 安全框架 最全中文配置文档.docx

    例如,你可以配置一个过滤器链来处理所有请求,或者根据URL模式动态创建过滤器链。这允许你在运行时更改安全策略,无需修改`web.xml`。 **配置示例**: ```xml &lt;bean id="securityManager" class="org.apache.shiro...

    shiro认证.docx

    这将创建一个名为 `shiroFilter` 的过滤器,并将所有请求委托给 Spring 管理的过滤器代理。 然后,我们需要创建一个 `shiro.xml` 配置文件,用于定义 Shiro 的具体行为。在这个配置文件中,我们可以自定义 Realm...

    单机版的shiro

    - **Filter**:Shiro 提供了一系列的安全过滤器,如 `authc`(认证过滤器)、`perms`(权限过滤器)等,它们在 Web 应用的请求处理链中起作用。 **5. 整合流程** - 创建 Realm 类,继承自 `AuthorizingRealm`,...

    springmvc shiro使用

    这段配置指定了使用Spring提供的代理过滤器`DelegatingFilterProxy`,并通过`targetFilterLifecycle`参数确保过滤器可以在每个HTTP请求周期内被正确调用。 ##### 3. 配置Spring Security Manager 在Spring的配置...

    Spring整合Shiro做权限控制模块详细案例分析

    2. **配置Shiro**:在Spring配置文件中声明Shiro的过滤器链,定义哪些URL需要进行权限控制。例如,创建一个`shiroFilter` bean,设置过滤规则,如登录拦截器、匿名访问等。 ```xml &lt;bean id="shiroFilter" class=...

    Spring框架中整合Shiro

    -- 配置过滤器链 --&gt; &lt;property name="filterChainDefinitions"&gt; /login = authc /logout = logout /** = anon ``` 在Web层,我们可以使用Shiro提供的Filter进行权限控制。例如,通过在web.xml中配置...

    SpringBoot集成 Shiro安全框架【完整源码+数据库】

    5. **配置Filter**:在SpringBoot的主类或者配置类中,通过`@WebFilter`注解配置Shiro Filter,将Shiro的过滤器链绑定到SpringBoot的DispatcherServlet。 6. **编写Controller**:创建处理登录、登出的Controller,...

Global site tag (gtag.js) - Google Analytics