• SpringBoot AOP介绍


    说起spring,我们知道其最核心的两个功能就是AOP(面向切面)和IOC(控制反转),这边文章来总结一下SpringBoot如何整合使用AOP。

    一、示例应用场景:对所有的web请求做切面来记录日志。

    1、pom中引入SpringBoot的web模块和使用AOP相关的依赖:
    ==============================================

    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-aop</artifactId>
    <version>2.1.5.RELEASE</version>
    </dependency>
    <dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjrt</artifactId>
    <version>1.8.9</version>
    </dependency>
    <dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.6.11</version>
    </dependency>
    <dependency>
    <groupId>cglib</groupId>
    <artifactId>cglib</artifactId>
    <version>2.1</version>
    </dependency>
    ============================================================


    其中:
    cglib包是用来动态代理用的,基于类的代理;
    aspectjrt和aspectjweaver是与aspectj相关的包,用来支持切面编程的;
    aspectjrt包是aspectj的runtime包;
    aspectjweaver是aspectj的织入包;

    2、实现一个简单的web请求入口(实现传入name参数,返回“hello xxx”的功能):


    注意:在完成了引入AOP依赖包后,一般来说并不需要去做其他配置。使用过Spring注解配置方式的人会问是否需要在程序主类中增加@EnableAspectJAutoProxy来启用,实际并不需要。

    因为在AOP的默认配置属性中,spring.aop.auto属性默认是开启的,也就是说只要引入了AOP依赖后,默认已经增加了@EnableAspectJAutoProxy。

    3、定义切面类,实现web层的日志切面

    要想把一个类变成切面类,需要两步,
    ① 在类上使用 @Component 注解 把切面类加入到IOC容器中
    ② 在类上使用 @Aspect 注解 使之成为切面类

    package com.example.aop;

    import org.aspectj.lang.JoinPoint;
    import org.aspectj.lang.annotation.AfterReturning;
    import org.aspectj.lang.annotation.Aspect;
    import org.aspectj.lang.annotation.Before;
    import org.aspectj.lang.annotation.Pointcut;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.stereotype.Component;
    import org.springframework.web.context.request.RequestContextHolder;
    import org.springframework.web.context.request.ServletRequestAttributes;
    import javax.servlet.http.HttpServletRequest;
    import java.util.Arrays;

    /**
    * Created by lmb on 2018/9/5.
    */
    @Aspect
    @Component
    public class WebLogAcpect {

    private Logger logger = LoggerFactory.getLogger(WebLogAcpect.class);

    /**
    * 定义切入点,切入点为com.example.aop下的所有函数
    */
    @Pointcut("execution(public * com.example.aop..*.*(..))")
    public void webLog(){}

    /**
    * 前置通知:在连接点之前执行的通知
    * @param joinPoint
    * @throws Throwable
    */
    @Before("webLog()")
    public void doBefore(JoinPoint joinPoint) throws Throwable {
    // 接收到请求,记录请求内容
    ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
    HttpServletRequest request = attributes.getRequest();

    // 记录下请求内容
    logger.info("URL : " + request.getRequestURL().toString());
    logger.info("HTTP_METHOD : " + request.getMethod());
    logger.info("IP : " + request.getRemoteAddr());
    logger.info("CLASS_METHOD : " + joinPoint.getSignature().getDeclaringTypeName() + "." + joinPoint.getSignature().getName());
    logger.info("ARGS : " + Arrays.toString(joinPoint.getArgs()));
    }

    @AfterReturning(returning = "ret",pointcut = "webLog()")
    public void doAfterReturning(Object ret) throws Throwable {
    // 处理完请求,返回内容
    logger.info("RESPONSE : " + ret);
    }
    }

    以上的切面类通过 @Pointcut定义的切入点为com.example.aop包下的所有函数做切人,通过 @Before实现切入点的前置通知,通过 @AfterReturning记录请求返回的对象。

    二、AOP支持的通知
    1、前置通知@Before:在某连接点之前执行的通知,除非抛出一个异常,否则这个通知不能阻止连接点之前的执行流程。

    /**
    * 前置通知,方法调用前被调用
    * @param joinPoint/null
    */
    @Before(value = POINT_CUT)
    public void before(JoinPoint joinPoint){
    logger.info("前置通知");
    //获取目标方法的参数信息
    Object[] obj = joinPoint.getArgs();
    //AOP代理类的信息
    joinPoint.getThis();
    //代理的目标对象
    joinPoint.getTarget();
    //用的最多 通知的签名
    Signature signature = joinPoint.getSignature();
    //代理的是哪一个方法
    logger.info("代理的是哪一个方法"+signature.getName());
    //AOP代理类的名字
    logger.info("AOP代理类的名字"+signature.getDeclaringTypeName());
    //AOP代理类的类(class)信息
    signature.getDeclaringType();
    //获取RequestAttributes
    RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes();
    //从获取RequestAttributes中获取HttpServletRequest的信息
    HttpServletRequest request = (HttpServletRequest) requestAttributes.resolveReference(RequestAttributes.REFERENCE_REQUEST);
    //如果要获取Session信息的话,可以这样写:
    //HttpSession session = (HttpSession) requestAttributes.resolveReference(RequestAttributes.REFERENCE_SESSION);
    //获取请求参数
    Enumeration<String> enumeration = request.getParameterNames();
    Map<String,String> parameterMap = Maps.newHashMap();
    while (enumeration.hasMoreElements()){
    String parameter = enumeration.nextElement();
    parameterMap.put(parameter,request.getParameter(parameter));
    }
    String str = JSON.toJSONString(parameterMap);
    if(obj.length > 0) {
    logger.info("请求的参数信息为:"+str);
    }
    }

    5、环绕通知@Around:包围一个连接点的通知,如方法调用等。这是最强大的一种通知类型。环绕通知可以在方法调用前后完成自定义的行为,它也会选择是否继续执行连接点或者直接返回它自己的返回值或抛出异常来结束执行。

    环绕通知最强大,也最麻烦,是一个对方法的环绕,具体方法会通过代理传递到切面中去,切面中可选择执行方法与否,执行几次方法等。环绕通知使用一个代理ProceedingJoinPoint类型的对象来管理目标对象,所以此通知的第一个参数必须是ProceedingJoinPoint类型。在通知体内调用ProceedingJoinPoint的proceed()方法会导致后台的连接点方法执行。proceed()方法也可能会被调用并且传入一个Object[]对象,该数组中的值将被作为方法执行时的入参。

    /**
    * 环绕通知:
    * 环绕通知非常强大,可以决定目标方法是否执行,什么时候执行,执行时是否需要替换方法参数,执行完毕是否需要替换返回值。
    * 环绕通知第一个参数必须是org.aspectj.lang.ProceedingJoinPoint类型
    */
    @Around(value = POINT_CUT)
    public Object doAroundAdvice(ProceedingJoinPoint proceedingJoinPoint){
    logger.info("环绕通知的目标方法名:"+proceedingJoinPoint.getSignature().getName());
    try {
    Object obj = proceedingJoinPoint.proceed();
    return obj;
    } catch (Throwable throwable) {
    throwable.printStackTrace();
    }
    return null;
    }

    6、有时候我们定义切面的时候,切面中需要使用到目标对象的某个参数,如何使切面能得到目标对象的参数呢?可以使用args来绑定。如果在一个args表达式中应该使用类型名字的地方使用一个参数名字,那么当通知执行的时候对象的参数值将会被传递进来。

    @Before("execution(* findById*(..)) &&" + "args(id,..)")
    public void twiceAsOld1(Long id){
    System.err.println ("切面before执行了。。。。id==" + id);

    }

    注意:任何通知方法都可以将第一个参数定义为org.aspectj.lang.JoinPoint类型(环绕通知需要定义第一个参数为ProceedingJoinPoint类型,它是 JoinPoint 的一个子类)。JoinPoint接口提供了一系列有用的方法,比如 getArgs()(返回方法参数)、getThis()(返回代理对象)、getTarget()(返回目标)、getSignature()(返回正在被通知的方法相关信息)和 toString()(打印出正在被通知的方法的有用信息)。

    三、切入点表达式
    定义切入点的时候需要一个包含名字和任意参数的签名,还有一个切入点表达式,如execution(public * com.example.aop...(..))

    切入点表达式的格式:execution([可见性]返回类型[声明类型].方法名(参数)[异常])
    其中[]内的是可选的,其它的还支持通配符的使用:
    1) *:匹配所有字符
    2) ..:一般用于匹配多个包,多个参数
    3) +:表示类及其子类
    4)运算符有:&&,||,!

    切入点表达式关键词用例:
    1)execution:用于匹配子表达式。
    //匹配com.cjm.model包及其子包中所有类中的所有方法,返回类型任意,方法参数任意
    @Pointcut(“execution(* com.cjm.model...(..))”)
    public void before(){}

    2)within:用于匹配连接点所在的Java类或者包。
    //匹配Person类中的所有方法
    @Pointcut(“within(com.cjm.model.Person)”)
    public void before(){}
    //匹配com.cjm包及其子包中所有类中的所有方法
    @Pointcut(“within(com.cjm..*)”)
    public void before(){}

    3) this:用于向通知方法中传入代理对象的引用。
    @Before(“before() && this(proxy)”)
    public void beforeAdvide(JoinPoint point, Object proxy){
    //处理逻辑
    }

    4)target:用于向通知方法中传入目标对象的引用。
    @Before(“before() && target(target)
    public void beforeAdvide(JoinPoint point, Object proxy){
    //处理逻辑
    }

    5)args:用于将参数传入到通知方法中。
    @Before(“before() && args(age,username)”)
    public void beforeAdvide(JoinPoint point, int age, String username){
    //处理逻辑
    }

    6)@within :用于匹配在类一级使用了参数确定的注解的类,其所有方法都将被匹配。
    @Pointcut(“@within(com.cjm.annotation.AdviceAnnotation)”)
    - 所有被@AdviceAnnotation标注的类都将匹配
    public void before(){}

    7)@target :和@within的功能类似,但必须要指定注解接口的保留策略为RUNTIME。
    @Pointcut(“@target(com.cjm.annotation.AdviceAnnotation)”)
    public void before(){}

    8)@args :传入连接点的对象对应的Java类必须被@args指定的Annotation注解标注。
    @Before(“@args(com.cjm.annotation.AdviceAnnotation)”)
    public void beforeAdvide(JoinPoint point){
    //处理逻辑
    }

    9)@annotation :匹配连接点被它参数指定的Annotation注解的方法。也就是说,所有被指定注解标注的方法都将匹配。
    @Pointcut(“@annotation(com.cjm.annotation.AdviceAnnotation)”)
    public void before(){}

    10)bean:通过受管Bean的名字来限定连接点所在的Bean。该关键词是Spring2.5新增的。
    @Pointcut(“bean(person)”)
    public void before(){}

  • 相关阅读:
    CCF-CSP201703-3 Markdown
    HDU1008 Elevator
    Java使用Preconditions.checkNotNull(.....)优雅地判空对象, 并处理可能的NullPointerException异常
    StringUtils的isBlank()方法
    java.math.RoundingMode 几个参数详解
    把String集合数据去"[ ]" 转成list和把String集合数据去除[ "" ,""] 转成list 工具类
    BeanUtils.copyProperties(复制对象属性方法)
    关于 mybatis 中 in 写法,<foreach collection="xxx" item="xxx" index="index" open="(" separator="," close=")"> 参数详解
    JAVA_collection_集合相关知识点(二、获取集合对象中某个属性的集合——CollectionUtils.collect()方法)
    @AllArgsConstructor @NoArgsConstructor
  • 原文地址:https://www.cnblogs.com/runnerjack/p/10988165.html
Copyright © 2020-2023  润新知