IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> MethodInterceptor -> 正文阅读

[Java知识库]MethodInterceptor

简介

Spring Shiro框架对接口MethodInterceptor的实现,主要用于校验当前Subject在被允许继续访问前,是否有能力执行方法;

核心代码

/**
  * 执行方法
  * 允许前置处理/后置处理/最终处理
  */
Object invoke(MethodInvocation methodInvocation) throws Throwable;

实现子类

实现类如下:

public interface MethodInterceptor
    abstract class MethodInterceptorSupport
        abstract class AnnotationMethodInterceptor
            abstract class AuthorizingAnnotationMethodInterceptor
                class UserAnnotationMethodInterceptor
                class PermissionAnnotationMethodInterceptor
                class GuestAnnotationMethodInterceptor
                class RoleAnnotationMethodInterceptor
                class AuthenticatedAnnotationMethodInterceptor
        abstract class AuthorizingMethodInterceptor
            abstract class AnnotationsAuthorizingMethodInterceptor
                class AopAllianceAnnotationsAuthorizingMethodInterceptor
  • MethodInterceptorSupport

简介

特定于Spring Shiro框架中AOP方法拦截器行为的抽象,将AOP处理细节留给子类实现;本类提供获取当前Subject的方法;

核心代码

/**
  * 构造方法
  */
public MethodInterceptorSupport() {
    // 默认无参构造方法
}

/**
  * 获取当前Subject
  */
protected Subject getSubject() {
    // 默认通过Shiro框架提供的方式获取当前Subject
    return SecurityUtils.getSubject();
}
  • AnnotationMethodInterceptor

简介

在被拦截的方法调用之前检查方法上特定的注解;

核心代码

// 注解处理器
private AnnotationHandler handler;
// 注解解析器
private AnnotationResolver resolver;

/**
  * 构造函数
  */
public AnnotationMethodInterceptor(AnnotationHandler handler, AnnotationResolver resolver) {
    if (handler == null) {
        // 必须指定注解处理器
        throw new IllegalArgumentException("AnnotationHandler argument cannot be null.");
    }
    setHandler(handler);
    // 注解解析器不存在则默认为DefaultAnnotationResolver
    setResolver(resolver != null ? resolver : new DefaultAnnotationResolver());
}

/**
  * 是否拦截指定的MethodInvocation
  */
public boolean supports(MethodInvocation mi) {
    // 是否存在本拦截器关心的注解
    return getAnnotation(mi) != null;
}

/**
  * 获取本拦截器关心的注解
  */
protected Annotation getAnnotation(MethodInvocation mi) {
    return getResolver().getAnnotation(mi, getHandler().getAnnotationClass());
}
  • AuthorizingAnnotationMethodInterceptor

简介

通过检查方法上的注解,在方法执行之前校验当前Subject是否被授权执行该方法;

核心代码

/**
  * 执行方法
  */
public Object invoke(MethodInvocation methodInvocation) throws Throwable {
    // 在方法调用前进行授权校验
    assertAuthorized(methodInvocation);
    return methodInvocation.proceed();
}

/**
  * 校验授权
  */
public void assertAuthorized(MethodInvocation mi) throws AuthorizationException {
    try {
        // 由注解处理器进行授权检查
        ((AuthorizingAnnotationHandler)getHandler()).assertAuthorized(getAnnotation(mi));
    }
    catch(AuthorizationException ae) {
        // Annotation handler doesn't know why it was called, so add the information here if possible. 
        // Don't wrap the exception here since we don't want to mask the specific exception, such as 
        // UnauthenticatedException etc. 
        if (ae.getCause() == null) ae.initCause(new AuthorizationException("Not authorized to invoke method: " + mi.getMethod()));
        throw ae;
    }         
}
  • AuthenticatedAnnotationMethodInterceptor

简介

检查被拦截方法是否声明注解RequiresAuthenticated,如果声明,校验当前Subject在执行该方法前,已登录;

核心代码

/**
  * 构造方法
  */
public AuthenticatedAnnotationMethodInterceptor() {
    super(new AuthenticatedAnnotationHandler());
}

/**
  * 构造方法
  */
public AuthenticatedAnnotationMethodInterceptor(AnnotationResolver resolver) {
    super(new AuthenticatedAnnotationHandler(), resolver);
}
  • GuestAnnotationMethodInterceptor

简介

检查被拦截方法是否声明注解RequiresGuest,如果声明,校验当前Subject在执行该方法前,未登录;

核心代码

/**
  * 构造方法
  */
public GuestAnnotationMethodInterceptor() {
    super(new GuestAnnotationHandler());
}

/**
  * 构造方法
  */
public GuestAnnotationMethodInterceptor(AnnotationResolver resolver) {
    super(new GuestAnnotationHandler(), resolver);
}
  • UserAnnotationMethodInterceptor

简介

检查被拦截方法是否声明注解RequiresUser,如果声明,校验当前Subject在执行该方法前,已登录或者被记住;

核心代码

/**
  * 构造方法
  */
public UserAnnotationMethodInterceptor() {
    super( new UserAnnotationHandler() );
}

/**
  * 构造方法
  */
public UserAnnotationMethodInterceptor(AnnotationResolver resolver) {
    super(new UserAnnotationHandler(), resolver);
}
  • PermissionAnnotationMethodInterceptor

简介

检查被拦截方法是否声明注解RequiresPermissions,如果声明,校验当前Subject在执行该方法前,是否拥有指定的权限列表;

核心代码

/**
  * 构造方法
  */
public PermissionAnnotationMethodInterceptor() {
    super( new PermissionAnnotationHandler() );
}

/**
  * 构造方法
  */
public PermissionAnnotationMethodInterceptor(AnnotationResolver resolver) {
    super( new PermissionAnnotationHandler(), resolver);
}
  • RoleAnnotationMethodInterceptor

简介

检查被拦截方法是否声明注解RequiresRoles,如果声明,校验当前Subject在执行该方法前,是否拥有指定的角色列表;

核心代码

/**
  * 构造方法
  */
public RoleAnnotationMethodInterceptor() {
    super( new RoleAnnotationHandler() );
}

/**
  * 构造方法
  */
public RoleAnnotationMethodInterceptor(AnnotationResolver resolver) {
    super(new RoleAnnotationHandler(), resolver);
}
  • AuthorizingMethodInterceptor

简介

支持拦截方法进行授权校验的基础抽象类;

核心代码

/**
  * 执行方法
  */
public Object invoke(MethodInvocation methodInvocation) throws Throwable {
    // 在方法执行前进行授权校验
    assertAuthorized(methodInvocation);
    return methodInvocation.proceed();
}

/**
  * 校验授权
  * 由子类实现算法细节
  */
protected abstract void assertAuthorized(MethodInvocation methodInvocation) throws AuthorizationException;
  • AnnotationsAuthorizingMethodInterceptor

简介

基于多个配置的AuthorizingAnnotationMethodInterceptor校验当前Subject是否被授权执行该方法;如果有一个AuthorizingAnnotationMethodInterceptor校验失败,则当前Subject无法执行该方法;

本质上是一种允许单个方法拦截器处理多个注解的便利机制;

核心代码

// AuthorizingAnnotationMethodInterceptor集合
protected Collection<AuthorizingAnnotationMethodInterceptor> methodInterceptors;

/**
  * 构造函数
  * 默认拥有多个AuthorizingAnnotationMethodInterceptor
  */
public AnnotationsAuthorizingMethodInterceptor() {
    methodInterceptors = new ArrayList<AuthorizingAnnotationMethodInterceptor>(5);
    methodInterceptors.add(new RoleAnnotationMethodInterceptor());
    methodInterceptors.add(new PermissionAnnotationMethodInterceptor());
    methodInterceptors.add(new AuthenticatedAnnotationMethodInterceptor());
    methodInterceptors.add(new UserAnnotationMethodInterceptor());
    methodInterceptors.add(new GuestAnnotationMethodInterceptor());
}

/**
  * 校验授权
  */
protected void assertAuthorized(MethodInvocation methodInvocation) throws AuthorizationException {
    //default implementation just ensures no deny votes are cast:
    Collection<AuthorizingAnnotationMethodInterceptor> aamis = getMethodInterceptors();
    if (aamis != null && !aamis.isEmpty()) {
        // 遍历配置的AuthorizingAnnotationMethodInterceptor
        for (AuthorizingAnnotationMethodInterceptor aami : aamis) {
            if (aami.supports(methodInvocation)) {
                // 校验授权
                aami.assertAuthorized(methodInvocation);
            }
        }
    }
}
  • AopAllianceAnnotationsAuthorizingMethodInterceptor

简介

适配任何AOP环境,将基于AOP的MethodInvocation包装为Spring Shiro框架的MethodInvocation;

核心代码

/**
  * 构造函数
  */
public AopAllianceAnnotationsAuthorizingMethodInterceptor() {
  List<AuthorizingAnnotationMethodInterceptor> interceptors = new ArrayList(5);
  AnnotationResolver resolver = new SpringAnnotationResolver();
  interceptors.add(new RoleAnnotationMethodInterceptor(resolver));
  interceptors.add(new PermissionAnnotationMethodInterceptor(resolver));
  interceptors.add(new AuthenticatedAnnotationMethodInterceptor(resolver));
  interceptors.add(new UserAnnotationMethodInterceptor(resolver));
  interceptors.add(new GuestAnnotationMethodInterceptor(resolver));
  
  // 默认拥有多个AuthorizingAnnotationMethodInterceptor
  this.setMethodInterceptors(interceptors);
}

/**
  * 将基于AOP的MethodInvocation包装为Shiro的MethodInvocation
  */
protected org.apache.shiro.aop.MethodInvocation createMethodInvocation(Object implSpecificMethodInvocation) {
    final MethodInvocation mi = (MethodInvocation) implSpecificMethodInvocation;

    return new org.apache.shiro.aop.MethodInvocation() {
        public Method getMethod() {
            return mi.getMethod();
        }

        public Object[] getArguments() {
            return mi.getArguments();
        }

        public String toString() {
            return "Method invocation [" + mi.getMethod() + "]";
        }

        public Object proceed() throws Throwable {
            return mi.proceed();
        }

        public Object getThis() {
            return mi.getThis();
        }
    };
}

/**
  * 继续调用
  */
protected Object continueInvocation(Object aopAllianceMethodInvocation) throws Throwable {
  org.aopalliance.intercept.MethodInvocation mi = (org.aopalliance.intercept.MethodInvocation)aopAllianceMethodInvocation;
  return mi.proceed();
}

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-11-15 15:42:36  更:2021-11-15 15:44:58 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:30:47-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码