Spring AOP 配置使用

一、基本原理

1、什么是aop

专业术语:在软件业,AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方 式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个 热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑 的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高 了开发的效率。

白话:编程中,对象与对象之间,方法与方法之间,模块与模块之间都是一个个切面。而这些对象之前、方法之前等都要调用同一个方法的时候,为了减少代码的重复copy,所以出现切面的思想,这时候,只需要将方法注入到接口调用的某个地方(切点),这样接口只需要关心具体的业务,而不需要关注其他非该接口关注的逻辑或处理。

2、aop的相关概念

  • Aspect(切面): Aspect 声明类似于 Java 中的类声明,在 Aspect 中会包含着一些 Pointcut 以及相应的 Advice。
  • Joint point(连接点):表示在程序中明确定义的点,典型的包括方法调用,对类成员的访问以及异常处理程序块的执行等等,它自身还可以嵌套其它 joint point。
  • Pointcut(切点):表示一组 joint point,这些 joint point 或是通过逻辑关系组合起来,或是通过通配、正则表达式等方式集中起来,它定义了相应的 Advice 将要发生的地方。
  • Advice(增强):Advice 定义了在 Pointcut 里面定义的程序点具体要做的操作,它通过 before、after 和 around 来区别是在每个 joint point 之前、之后还是代替执行的代码。
  • Target(目标对象):织入 Advice 的目标对象.。
  • Weaving(织入):将 Aspect 和其他对象连接起来, 并创建 Adviced object 的过程

3、在Java中动态代理的两种方式:

  • JDK动态代理:JDK动态代理需要实现某个接口
  • CGLib动态代理:其生成的动态代理对象是目标类的子类

场景选择:

          如果是单例的我们最好使用CGLib代理,如果是多例的我们最好使用JDK代理

 原因:

  • JDK在创建代理对象时的性能要高于CGLib代理,而生成代理对象的运行性能却比CGLib的低。
  • 如果是单例的代理,推荐使用CGLib

二、配置字段详解

1、配置文件方式

"1.0" encoding="UTF-8"?>

    "http://www.springframework.org/schema/beans"

        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

        xmlns:aop="http://www.springframework.org/schema/aop"

        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd

            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.1.xsd">

      

        

        "arithmeticCalculator" class="com.spring.aop.impl.xml.ArithmeticCalculatorImpl">

        

        "loggingAspect" class="com.spring.aop.impl.xml.LoggingAspect">

          

        "validationAspect" class="com.spring.aop.impl.xml.ValidationAspect">

          

        

        

            

            "execution(* com.spring.aop.impl.xml.ArithmeticCalculator.*(..))" id="pointcut"/>

            

            "loggingAspect" order="1">

                

                

                

                "beforeMethod" pointcut-ref="pointcut"/>

                

                "afterMethod" pointcut-ref="pointcut"/>

                

                "afterThrowing"  pointcut-ref="pointcut" throwing="e"/>

                

                "afterReturnning" pointcut-ref="pointcut" returning="result"/>

                  

            

            "validationAspect" order="2">

                

                "validateArgs" pointcut-ref="pointcut"/>

            

        

    

2、注解方式

package com.facishare.webpage.customer.aop;

 

import com.facishare.webpage.customer.api.exception.WebPageException;

import org.aspectj.lang.JoinPoint;

import org.aspectj.lang.annotation.AfterReturning;

import org.aspectj.lang.annotation.AfterThrowing;

import org.aspectj.lang.annotation.Aspect;

import org.aspectj.lang.annotation.Before;

import org.slf4j.Logger;

import org.slf4j.LoggerFactory;

 

/**

 * Created by zhangyu on 2019/9/9

 */

@Aspect

public class WebPageControllerAspect {

 

    private static Logger logger = LoggerFactory.getLogger(WebPageControllerAspect.class);

 

    @Before(value = "execution(* com.facishare.webpage.customer.controller..*.*(..))")

    public void beforeCall(JoinPoint joinPoint) {

        logger.info("before WebPageController method:{} Args:{}", joinPoint.getSignature().toShortString(), joinPoint.getArgs());

    }

 

    @AfterReturning(value = "execution(* com.facishare.webpage.customer.controller..*.*(..))", returning = "ret")

    public void afterReturn(JoinPoint joinPoint, Object ret) {

        logger.info("afterReturn, WebPageController:{} arg:{} Return:{}",

                joinPoint.getSignature().toShortString(), joinPoint.getArgs(), ret);

    }

 

    @AfterThrowing(value = "execution(* com.facishare.webpage.customer.controller..*.*(..))", throwing = "e")

    public void afterThrowing(JoinPoint joinPoint, Throwable e) throws Throwable {

        if (e instanceof WebPageException) {

            logger.warn("afterThrowing, WebPageController:{} ", joinPoint.getSignature().toShortString(), e);

        else {

            logger.error("afterThrowing, WebPageController:{} ", joinPoint.getSignature().toShortString(), e);

            throw e;

        }

    }

 

}

"1.0" encoding="UTF-8"?>

"http://www.springframework.org/schema/beans"

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

       xmlns:aop="http://www.springframework.org/schema/aop"

       xsi:schemaLocation="http://www.springframework.org/schema/aop

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

         http://www.springframework.org/schema/beans

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

 

    class="true">

        "webPageServiceAspect"/>

        "webPageControllerAspect"/>

        "serviceProfiler"/>

        "webPageConsoleAspect"/>

    

 

    "webPageServiceAspect" class="com.facishare.webpage.customer.aop.WebPageServiceAspect"/>

    "webPageControllerAspect" class="com.facishare.webpage.customer.aop.WebPageControllerAspect"/>

    

    "serviceProfiler" class="com.facishare.qixin.common.aop.QixinTraceServiceProfiler"/>

    "webPageConsoleAspect" class="com.facishare.webpage.customer.aop.WebPageConsoleAspect"/>

    class="true">

        "serviceProfiler">

            "profile" pointcut="execution(* com.facishare.webpage.customer.controller.impl.*.*(..))"/>

        

    

 

三、应用

1、正确的使用姿势

"1.0" encoding="UTF-8"?>

"http://www.springframework.org/schema/beans"

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

       xmlns:aop="http://www.springframework.org/schema/aop"

       xsi:schemaLocation="http://www.springframework.org/schema/aop

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

         http://www.springframework.org/schema/beans

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

    

    class="true">

        "webPageServiceAspect"/>

        "webPageControllerAspect"/>

        "serviceProfiler"/>

    

 

    "webPageServiceAspect" class="com.facishare.webpage.customer.aop.WebPageServiceAspect"/>

    "webPageControllerAspect" class="com.facishare.webpage.customer.aop.WebPageControllerAspect"/>

    

    "serviceProfiler" class="com.facishare.qixin.common.aop.QixinTraceServiceProfiler"/>

    

    class="true">

        "serviceProfiler">

            "profile" pointcut="execution(* com.facishare.webpage.customer.controller.impl.*.*(..))"/>

        

    

 

2、曾经踩过的坑

         备注:这个就是没有把idempotentAspect   include到aspectj-autoproxy,导致切不到对应的aop

"1.0" encoding="UTF-8"?>

"http://www.springframework.org/schema/beans"

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

       xmlns:aop="http://www.springframework.org/schema/aop"

       xsi:schemaLocation="http://www.springframework.org/schema/aop

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

         http://www.springframework.org/schema/beans

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

 

 

    

        "serviceAop"/>

    

 

    "serviceAop" class=" com.facishare.extension.provider.aop.ExtensionProviderAop"/>

    "idempotentAspect" class="com.facishare.idempotent.IdempotentAspect" />

 

    "qixinTraceProfiler" class="com.facishare.extension.provider.profile.QixinTraceProfiler"/>

 

    

 

        "qixinTraceProfiler">

            "profile" pointcut="execution(* com.facishare.extension.provider.service.dubboService.SpeechToTextServiceImpl.*(..))"/>

        

 

        "qixinTraceProfiler">

            "profile" pointcut="execution(* com.facishare.extension.provider.service.dubboService.ApplyServiceImpl.*(..))"/>

        

 

        "qixinTraceProfiler">

            "profile" pointcut="execution(* com.facishare.extension.provider.service.dubboService.ChatBoardServiceImpl.*(..))"/>

        

        "qixinTraceProfiler">

            "profile" pointcut="execution(* com.facishare.extension.provider.service.dubboService.InteractionServiceImpl.*(..))"/>

        

 

 

    

 

你可能感兴趣的:(Spring AOP 配置使用)