Apache Shrio安全框架实现原理及实例详解

网友投稿 515 2023-06-15

Apache Shrio安全框架实现原理及实例详解

Apache Shrio安全框架实现原理及实例详解

一、Shiro整体概述

1.简介

Apache Shiro是java的一个安全框架,功能强大,使用简单,Shiro为开发人员提供了一个直观而全面的认证(登录),授权(判断是否含有权限),加密(密码加密)及会话管理(Shiro内置Session)的解决方案.

2.Shiro组件

3.Shiro架构

3.1 外部架构(以应用程序角度)

3.2 内部架构

4. Shiro的过滤器

过滤器简称

对应的java类

anon

org.apache.shiro.web.filter.authc.AnonymousFilter

authc

org.apache.shiro.web.filter.authc.FormAuthenticationFilter

authcBasic

org.apache.shiro.web.filter.authc.BasicHttpAuthenticationFilter

perms

org.apache.shiro.web.filter.authz.PermissionsAuthorizationFilter

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.authc.UserFilter

logout

org.apache.shiro.web.filter.authc.LogoutFilter

挑几个重要的说明一下:

anon:匿名过滤器,不登录也可以访问的资源使用,比如首页,一些静态资源等

authc:认证过滤器,登录成功后才能访问的资源使用

perms:授权过滤器,必须具备某种权限才能访问

roles:角色过滤器,必须具备某种角色才能访问

注意:这么多过滤器,使用起来肯定不方便,Shiro框架也考虑到了这一点,所以有一个过滤器,一个顶十个,即DelegatingFilterProxy.

5. Shiro与Spring整合

5.1 pom.xml

&http://lt;!--shiro和spring整合-->

org.apache.shiro

shiro-spring

1.3.2

5.2 web.xml

shiroFilter

org.springframework.web.filter.DelegatingFilterProxy

targetFilterLifecycle

true

shiroFilter

/*

5.3applicationContext-shiro.xml

xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:aop="http://springframework.org/schema/aop"

xmlns:context="http://springframework.org/schema/context"

xmlns:jdbc="http://springframework.org/schema/jdbc" xmlns:tx="http://springframework.org/schema/tx"

xmlns:task="http://springframework.org/schema/task"

xsi:schemaLocation="

http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd

http://springframework.org/schema/aop http://springframework.org/schema/aop/spring-aop.xsd

http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd

http://springframework.org/schema/jdbc http://springframework.org/schema/jdbc/spring-jdbc.xsd

http://springframework.org/schema/tx http://springframework.org/schema/tx/spring-tx.xsd">

/system/module/list.do = perms["模块管理"]

/index.jsp* = anon

/login.jsp* = anon

/login* = anon

/logout* = anon

/css/** = anon

/img/** = anon

/plugins/** = anon

/make/** = anon

/** = authc

http://

depends-on="lifecycleBeanPostProcessor">

xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:aop="http://springframework.org/schema/aop"

xmlns:context="http://springframework.org/schema/context"

xmlns:jdbc="http://springframework.org/schema/jdbc" xmlns:tx="http://springframework.org/schema/tx"

xmlns:task="http://springframework.org/schema/task"

xsi:schemaLocation="

http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd

http://springframework.org/schema/aop http://springframework.org/schema/aop/spring-aop.xsd

http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd

http://springframework.org/schema/jdbc http://springframework.org/schema/jdbc/spring-jdbc.xsd

http://springframework.org/schema/tx http://springframework.org/schema/tx/spring-tx.xsd">

/system/module/list.do = perms["模块管理"]

/index.jsp* = anon

/login.jsp* = anon

/login* = anon

/logout* = anon

/css/** = anon

/img/** = anon

/plugins/** = anon

/make/** = anon

/** = authc

http://

depends-on="lifecycleBeanPostProcessor">

depends-on="lifecycleBeanPostProcessor">

5.4 如果想看具体的实现代码(含sql脚本),可以点击页面右上角Fork me on github,到我的github仓库中拉取

仓库地址:  https://github.com/AdilCao/Shiro.git

代码部分只需要关注三个类:

1.LoginController(登录,在这里获取Subject主体,调用subject.login()方法后直接调用认证方法)

2.AuthRealm(认证和授权在这个类中定义,认证成功后调用密码比较器进行比较;授权即查找登录用户所具有的权限模块集合)

3.CustomCredentialsMatcher(密码比较器,将浏览器输入明文密码加密后,与数据库中的安全密码进行比较)

注意:整个过程中如果登录不成功,就会抛出异常

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:SpringBoot启动器Starters使用及原理解析
下一篇:SpringMVC注解@RequestParam方法原理解析
相关文章

 发表评论

暂时没有评论,来抢沙发吧~