首页 > 其他分享 >Spring AOP 和 拦截器 获取类上与方法上的注解

Spring AOP 和 拦截器 获取类上与方法上的注解

时间:2023-07-24 12:13:57浏览次数:60  
标签:拦截器 point Spring myTestAnnotation AOP HasPermission 注解 方法 public

方法1:

 https://blog.csdn.net/qq_37778018/article/details/125326847

 

在做一个跨过目标注解的鉴权功能时,想到了AOP与拦截器两种方式,其中 @HasPermission 是我自定义的注解,以下分别为AOP与拦截器获取访问目标类与方法上的注解的方法。由于我的系统在拦截器上配置了拦截过程,

所以我选的是拦截器的方式,读者可根据自己的需求来。

一、Spring AOP
先通过ProceedingJoinPoint对象的 joinPoint.getSignature()方法获取到 Signature 的对象并强制类型转换为一个MethodSignature对象,通过 signature.getClass()方法获取到一个 Class 对象,

最后通过 AnnotationUtils.findAnnotation()方法获取目标类上的目标注解;同理,通过 signature.getMethod()方法获取到一个 Method 对象,最后通过 AnnotationUtils.findAnnotation()方法获取目标方法上的目标注解。

 

@Aspect
@Component
public class PermissionAop {
 
    @Pointcut("execution(public * com.xxx.yyy.controller.*.*(..))")
    public void pointcut(){
 
    }
 
    @Around("pointcut()")
    public ApiResult doAround(ProceedingJoinPoint joinPoint) throws Throwable {
        Object[] args = joinPoint.getArgs();
        MethodSignature signature = (MethodSignature) joinPoint.getSignature();
        //1.获取目标类上的目标注解(可判断目标类是否存在该注解)
        HasPermission annotationInClass = AnnotationUtils.findAnnotation(signature.getClass(), HasPermission.class);
        //2.获取目标方法上的目标注解(可判断目标方法是否存在该注解)
        HasPermission annotationInMethod = AnnotationUtils.findAnnotation(signature.getMethod(), HasPermission.class);
        //ps:如果1.无法获取类上的注解时
        //使用反射的方式
        /* 
         * MethodSignature signature = (MethodSignature) joinPoint.getSignature();
         * Class<?> tagClass = signatureInMethod.getDeclaringType();
         * boolean annotation = tagClass.isAnnotationPresent(HasPermission.class);
         * HasPermission annotationInClass=null;
         * if(annotation){
         *     annotationInClass = tagClass.getAnnotation(HasPermission.class);
         * }
         * 
         */
        
        //....
        //具体业务逻辑
        //....
        
        return (ApiResult) joinPoint.proceed(args);
    }
 
}

 

二、拦截器 

将 handler 强制转换为 HandlerMetho 对象,再通过 HandlerMethod 对象的handlerMethod.getBeanType() 方法获取到 Bean 对象,最后通过 AnnotationUtils.findAnnotation()方法获取目标类上的目标注解;
同理,通过handlerMethod.getMethod() 方法获取到 Method 对象,最后通过 AnnotationUtils.findAnnotation()方法获取目标方法上的目标注解。 

 

@Component
public class PermissionInterceptor implements HandlerInterceptor {
 
    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) {
        HandlerMethod handlerMethod = (HandlerMethod) handler;
        //1.获取目标类上的目标注解(可判断目标类是否存在该注解)
        HasPermission annotationInClass = AnnotationUtils.findAnnotation(handlerMethod.getBeanType(), HasPermission.class);
        //2.获取目标方法上的目标注解(可判断目标方法是否存在该注解)
        HasPermission annotationInMethod = AnnotationUtils.findAnnotation(handlerMethod.getMethod(), HasPermission.class);
 
        //....
        //..业务逻辑代码
        //..
  }
}

 

 

方法2:

https://blog.csdn.net/weixin_43702146/article/details/126871811

 

AOP处理类上或者方法上面的自定义或指定注解

1、aop处理类上面的注解
@Around(value = "@within(myTestAnnotation)")
处理类上面的注解、执行类下面的每个方法时都会触发

2、aop处理方法上面的注解
@Around(value = "@annotation(myTestAnnotation)")
在执行特定方法时会触发

3、注意
value = "@annotation (参数名)" 是必须的,@within(参数名)、@annotation(参数名)中的参数名必须与所注释的方法内注解入参的参数名一致

比如:

 @Around(value = "@within(myTestAnnotation)")
 public Object processMethod(ProceedingJoinPoint point, MyTestAnnotation myTestAnnotation) throws Throwable {
     return process(point,myTestAnnotation);
 }
 @Around(value = "@annotation(myTestAnnotation)")
 public Object around(ProceedingJoinPoint point, MyTestAnnotation myTestAnnotation) throws Throwable {
     return process(point,myTestAnnotation);
 }

 

argNames = "" 配置不是必须的,但其配置的值一定要与 所注释方法内所有对象名一致! 否则无法匹配参数,启动报错!

比如: 

 @Around(value = "@within(myTestAnnotation)",argNames = "point,myTestAnnotation")
 public Object processMethod(ProceedingJoinPoint point, MyTestAnnotation myTestAnnotation) throws Throwable {
     return process(point,myTestAnnotation);
 }
 @Around(value = "@annotation(myTestAnnotation)",argNames = "point,myTestAnnotation")
 public Object around(ProceedingJoinPoint point, MyTestAnnotation myTestAnnotation) throws Throwable {
     return process(point,myTestAnnotation);
 }

 

3、代码

 

@Aspect
@Component
@Slf4j
public class MyTestAspect {

    // @within处理类上面的注解[执行类下面的每个方法都会触发]
    @Around(value = "@within(myTestAnnotation)")
    public Object processMethod(ProceedingJoinPoint point, MyTestAnnotation myTestAnnotation) throws Throwable {
        return process(point,myTestAnnotation);
    }


    // @annotation处理方法上面的注解
    @Around(value = "@annotation(myTestAnnotation)")
    public Object around(ProceedingJoinPoint point, MyTestAnnotation myTestAnnotation) throws Throwable {
        return process(point,myTestAnnotation);
    }

    public static Object process(ProceedingJoinPoint pjp, MyTestAnnotation myTestAnnotation) throws Throwable {
        // 获取当前方法参数[]
        Object[] args = pjp.getArgs();
        // 获取当前方法
        Signature method = pjp.getSignature();
        // 执行当前方法并返回结果
        Object returnValue = pjp.proceed(args);
        log.info("methodName = {} and args = {}  and returnValue ={} proceed finished !", method.getName(), args, returnValue);
        return returnValue;
    }
    
}

 

标签:拦截器,point,Spring,myTestAnnotation,AOP,HasPermission,注解,方法,public
From: https://www.cnblogs.com/kelelipeng/p/17576879.html

相关文章

  • Spring管理事务默认回滚的异常是什么?
    问题:Spring管理事务默认(即没有rollBackFor的情况下)可以回滚的异常是什么? 回答:RuntimeException或者Error。抛出运行时异常,是否回滚?Yes@TransactionalpublicbooleanrollbackOn(Throwableex){returnnewRuntimeException();}抛出错误,是否回滚? Yes@Transact......
  • SpringBoot源码第三章-refreshContext
    refreshContext()刷新上下文privatevoidrefreshContext(ConfigurableApplicationContextcontext){/***cintext=AnnotationConfigApplicationContext*/refresh(context);if(this.registerShutdownHook){ try{ context.registerShu......
  • 《Spring6核心源码解析》已完结,涵盖IOC容器、AOP切面、AOT预编译、SpringMVC,面试杠杠
    作者:冰河星球:http://m6z.cn/6aeFbs博客:https://binghe.gitcode.host文章汇总:https://binghe.gitcode.host/md/all/all.html源码地址:https://github.com/binghe001/spring-annotation-book沉淀,成长,突破,帮助他人,成就自我。大家好,我是冰河~~提起Spring,可以这么说,Spring几乎......
  • 好奇-->springboot启动时候的机制
    问题一:springboot启动的组件顺序?问题二:启动的组件大致分为哪几种?是干嘛的?埋下伏笔,明日解决-->2023-07-24 ......
  • springboot获取ApplicationContext的两种方式
    方法1:启动类返回的就是个ApplicationContext对象,可以把这个对象存在当前类的静态变量中;方法2:写个工具类,实现ApplicationContextAware接口,实现默认方法setApplicationContext,传入的参数即applicationContext,找个地方存放即可......
  • spring6 ioc aop 从入门到精通零基础进阶学习路线?
    当你已经掌握了Spring框架的基础知识以及IoC和AOP的核心概念后,可以进一步深化你的学习。以下是更详细的学习路线:1.IoC容器进阶:-学习如何自定义Bean的初始化和销毁方法,并了解Bean生命周期的各个阶段。-深入了解Spring的作用域(Scope)概念,如单例模式、原型模式、会话模式和请求模......
  • Spring Boot 使用 slf4j 日志
    logback的使用     在学习JAVA闲暇时间翻阅别人的随笔中的过程中,我发现在学习开发中我们经常使用System.out.println()来打印一些信息用来输出日志,但是这样不好,因为这样会在大量的使用System.out的过程中会增加资源的消耗,在查阅相关资料后我发现在实际项目中我们可以使......
  • Springboot 整合mybatis 加导出excel
    快速写一个springboot,mybatis的demo,最后用excel导出。第一步,创建一个新maven命名就按自己的来啦第二步,配置pom文件<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version&g......
  • 2022 javax.management.InstanceNotFoundException: org.springframework.boot:ty
    解决"2022javax.management.InstanceNotFoundException:org.springframework.boot:ty"的步骤对于这个错误,我们需要明确以下几个步骤来解决问题。下面是一个整体的流程表格:步骤描述1确认是否存在相关的InstanceNotFoundException异常2检查org.springframework.boo......
  • .net 拦截器多个权限拦截器 只要一个通过都通过
    .NET拦截器多个权限拦截器只要一个通过都通过的实现方法1.概述在.NET开发中,我们经常需要在程序的不同位置进行权限验证。通常情况下,我们会使用拦截器(Interceptor)来实现权限验证功能。拦截器是一种特殊的类,用于在方法执行前或执行后插入一些逻辑。在这个任务中,我们要实现一个拦截......