shiro-core
-
Introduction to Apache Shiro | Apache Shiro: (interface/function,requirement-analysis)
-
整体架构:Apache Shiro Architecture | Apache Shiro(architecture,component-based)
-
具体的包结构(仅包括最核心部分)
【Abstraction:设计 】【Process: 部署 + 接口(deployment+interface,Class-based)
-
整体初始化流程【Abstraction:实现】【Process: 流程】
所有的开始,都是从配置开始,配置的方式主要有两种:编程式配置,配置文件读取与解析(利用反射机制,调用构造函数,setter,getter),
初始化的对象,主要是SecurityManager
Subject
设计模式
Abstraction == 设计
-
builder pattern
-
工厂模式
实现
[Abstraction] = 实现
-
数据结构
Subject.Builder
DelegatingSubject
-
创建过程
-
SubjectContext :Subject == 1:1 ,SubjectFactory每生产一个subject都需要一个SubjectContext实例(本质是Map) ,
且已经定义好了key(常量) -
其创建由securityManager负责,故其建立在securtyManager初始化完成的基础上
-
Subject.Builder
-
DefaultSecurityManager
后续过程非常复杂,其大概过程如下图(下图是shiro-web的过程,但核心部分并没变),主要是从sessionDAO中查询session,没有找到也没关系,调用subject.getSession(create:boolean)时还有机会创建
-
-
-
工作流程
TheSubject
instance, typically aDelegatingSubject
(or a subclass) delegates to the application’sSecurityManager
login
checkPermission
SecurityManager
设计模式
-
工厂模式 :SessionManagerFactory
-
委托:将验证,授权,会话管理都委托给Authenticator,Authorizer,SessionManager
实现
数据结构
每个实例其实包含了其所有父类的所有字段(不包括静态),包括私有字段,不过需要提供getter()
可以看出其包含(引用)了大部分其他组件,因此对于Environment(也就是”ShiroContext",shiro的环境变量集) ,最主要的环境变量是就SecurityManager
Environment:
An Environment instance encapsulates all of the objects that Shiro requires to function. **It is essentially a 'meta' object from which all Shiro components can be obtained for an application. An Environment instance is usually created as a result of parsing a Shiro configuration file.**The environment instance can be stored in any place the application deems necessary, and from it, can retrieve any of Shiro's components that might be necessary in implementing security behavior. For example, the most obvious component accessible via an Environment instance is the application's securityManager.
创建过程
通过SessionManagerFactory创建,T 这里是SeesionManager
默认情况下(不进行任何配置)SessionManagerFactory调用无参构造函数,在构造的过程中会连带着相关组件初始化(Authenticator,Authorizer,SessionManger,都是默认对象,Default***)
如果配置,无非也是利用反射,调用构造函数,setter,getter,进行具体设置
工作过程
-
subject的创建(已经给出)
-
其他都委托给其他组件
Authenticator
设计模式
-
AOP(编程思想,而不是模式)&& 策略模式
Filter、Interceptor、Spring AOP 的对比
Filter、Interceptor 和 Spring AOP 都体现了面向切面编程(AOP)的思想,本质上是为了解决横切关注点的问题。它们的主要区别在于粒度(切入点的层次不同),但其核心思想一致:将业务逻辑和通用逻辑(如认证、日志、事务)解耦,实现关注点分离。
AOP来源于 关注点分离原则
类型 | 切入点 | |
---|---|---|
Filter | 程序级别:Servlet | |
Interceptor | 类级别 : Controller | |
spring AOP | 方法级别 |
所以,我们可以说,**Filter、Interceptor 和 AOP 都是面向切面编程的不同层次实现**
* 工厂模式
RealmFatory
* 委托:将数据查询委托给Realm
实现
-
数据结构/类图
-
验证流程(工作流程)
authenticator : ModularRealmAuthenticator
ModularRealmAuthenticator::
很明显,采用了策略模式(具体策略分类由pam包实现),同时采用了 静态的AOP(即将advice()以源码的形式织入)
Authorizer
Authorization Elements
-
Permision = Resource + Actions
-
Role 是权限的集合
-
User
As we’ve covered previously however, the
Subject
is really Shiro’s 'User' concept.
设计模式
-
AOP :org.apache.shiro.aop.MethodInterceptor --->对应authz.aop包
**A MethodInterceptor intercepts a MethodInvocation to perform before or after logic (aka 'advice').**Shiro's implementations of this interface mostly have to deal with ensuring a current Subject has the ability to execute the method before allowing it to continue.
//org.apache.shiro.authz.aop.AuthorizingAnnotationMethodInterceptor
public Object invoke(MethodInvocation methodInvocation) throws Throwable {
assertAuthorized(methodInvocation);
return methodInvocation.proceed();
}
-
委托:将数据查询委托给Realm
实现
数据结构/类图
主要部分:
可以看出 委托模式和 代理模式(jdk) 在代码形式上是一致的,因为委托模式可以看作“没有任何代理逻辑的代理模式”
-
aop部分 : 解决以注解为基础的访问控制,算是扩展部分
Before you can use Java annotations, you’ll need to enable AOP support in your application. There are a number of different AOP frameworks so, unfortunately, there is no standard way to enable AOP in an application.
授权流程(工作流程)
主要采用委托的方式:
//ModularRealmAuthorizer::
public boolean isPermitted(PrincipalCollection principals, String permission) {
assertRealmsConfigured();
for (Realm realm : getRealms()) {
if (!(realm instanceof Authorizer)) {
continue;
}
if (((Authorizer) realm).isPermitted(principals, permission)) {
return true;
}
}
return false;
}
public boolean isPermitted(PrincipalCollection principals, Permission permission) {
assertRealmsConfigured();
for (Realm realm : getRealms()) {
if (!(realm instanceof Authorizer)) {
continue;
}
if (((Authorizer) realm).isPermitted(principals, permission)) {
return true;
}
}
return false;
}
//AuthorizingRealm::
public boolean isPermitted(PrincipalCollection principals, Permission permission) {
AuthorizationInfo info = getAuthorizationInfo(principals);
return isPermitted(permission, info);
}
protected boolean isPermitted(Permission permission, AuthorizationInfo info) {
Collection<Permission> perms = getPermissions(info);
if (perms != null && !perms.isEmpty()) {
for (Permission perm : perms) {
if (perm.implies(permission)) {//表示perm 包含 permission
return true;
}
}
}
return false;
}
SessionManager
Session Management | Apache Shiro
Like other core architectural components in Shiro, the
SessionManager
is a top-level component maintained by theSecurityManager
设计模式
-
监听
-
DAO&委托
SessionManager
implementations delegate these Create/Read/Update/Delete (CRUD) operations to an internal component, theSessionDAO
, which reflects the Data Access Object (DAO)design pattern.
实现
数据结构/类图
SessionDAO默认实现是用内存,由shiro实现,其他方式需要由Application自己实现
shiro-web的WebsessionManager 的两个实现分别对应native(用shiro自己实现的会话管理) 和 serveltcontainer(调用ServletContainer实现的会话管理
SessionDAO默认实现是用内存,由shiro实现,其他方式需要由Application自己实现
shiro-web的WebsessionManager 的两个实现分别对应native(用shiro自己实现的会话管理) 和 serveltcontainer(调用ServletContainer实现的会话管理
//ServletContainerSessionManager::
public Session getSession(SessionKey key) throws SessionException {
if (!WebUtils.isHttp(key)) {
String msg = "SessionKey must be an HTTP compatible implementation.";
throw new IllegalArgumentException(msg);
}
HttpServletRequest request = WebUtils.getHttpRequest(key);
Session session = null;
//调用servlet container实现的接口
HttpSession httpSession = request.getSession(false);
if (httpSession != null) {
session = createSession(httpSession, request.getRemoteHost());
}
return session;
}
工作流程
在subject创建部分已给出
Realms
负责获取验证信息,访问控制(权限检查),shiro提供了一些简单实现,但通常由Application根据业务实现
Apache Shiro Realms | Apache Shiro
shiro-web
-
shiro-web是shiro-core的wrapper:
其特征都是 ”实现一方,调用一方“ 注:调用不一定要显式的调用(代码上的),隐式调用也算,比如子类对于没有重写父类的方法,其字节码的函数引用与父类的一致,所以也可算作子类调用了父类的函数
比如shiro-web实现了Filter接口,从而使得Tomcat可以调用,同时ShiroFilter,又调用了WebSubject,
从抽象的接口的意义上讲,Shiro***Filter调用WebSubject相关验证和授权接口,但这些接口是继承自Subject的,所以会调用Subject接口,从而调用了shiro-core
如图:红色代表shiro-core, 蓝色是shiro-web
从具体实现的意义过程来讲,当然是类调用类,但这是实现,不是"概念",从抽象意义讨论调用过程比较契合概念.
同时由于其是软件级别的wrapper,shiro-core与其wrapper(shiro-web) 不是完全单向的调用关系,某些情况shiro-core会调用wrapper中的实现,比如SessionManager的两种实现
同时shiro-web与Servlet容器也不是单向关系
-
同时从上图可以看出其符合架构(Architecture)中的分层结构(Layered)
-
session管理冲突:
Session管理的使用,servlet容器(Tomcat) 已经实现了 的(Tomcat的Session管理(一) - coldridgeValley - 博客园 (cnblogs.com)),所以到底是使用 shrio提供的SessionManager,还是Tomcat已经实现的 是一个需要考虑的选择,shiro当然考虑到了这点
-
subject 不在是“用户”级别 更确切的讲是“请求”级别,因为Servlet Container是以请求为单位进行处理,所以对它来说“主体” 是 请求
-
具体适配方式以后展开
4A评测 - 免责申明
本站提供的一切软件、教程和内容信息仅限用于学习和研究目的。
不得将上述内容用于商业或者非法用途,否则一切后果请用户自负。
本站信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。
如果您喜欢该程序,请支持正版,购买注册,得到更好的正版服务。如有侵权请邮件与我们联系处理。敬请谅解!
程序来源网络,不确保不包含木马病毒等危险内容,请在确保安全的情况下或使用虚拟机使用。
侵权违规投诉邮箱:4ablog168#gmail.com(#换成@)