봄 어두운 말 : AOP 알림 유형

다섯 명 0 통보

사전 통지 : 포인트 컷 방법을 수행하기 전에 수행;
포스트 통지 : 상기 방법은 정상적인 실행 시작점 이후에 수행된다. 그것은 오직 하나 개의 예외 통지를 실행할 수 있으며,
예외 통지 : 엔트리 포인트 방법 예외의 실행 후에 실행된다. IT 및 통지를 게시는 오직 실행될 수 있으며,
최종 통지 : 아니오 정상 진입 점 방법은 그것 다시 실행됩니다 실행 여부를 중요;

조언 주위 :4 서면 통지를 포함, 통지는 일반적으로 서라운드입니다결과 비트 다른 때문입니다.

  • 스프링 프레임 워크의 인터페이스와 함께 우리를 제공 ProceedingJoinPoint. 인터페이스)은 (진행하는 방법을 가지며,이 방법은 명시 적 엔트리 포인트 메소드를 호출하는 것과 같다.
  • 매개 변수가 둘러싸여으로 인터페이스는 우리가 우리를 위해 사용하는 프로그램을 실행하는 동안, 스프링 프레임 워크는 인터페이스의 구현 클래스를 제공하고, 통지 할 수있다.
  • 서라운드 통지 방법 및 통지 유형 4 포인트 컷도있다.
    그림 삽입 설명 여기

1.bean.xml 구성

  • (1) AOP (포인트 컷 라벨 내 공공 절단면 작성 pointcut 표현 통지의 여러 유형의 다음)이 pointcut 표현을 호출 할 수 있습니다.
  • (2) 기록 통지 방법 및 통지 유형 태그 형태 : AOP , 기입 통지 클래스 상단 소스.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="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.xsd">

    <!--配置spring的IOC,把service对象配置进来-->
    <bean id="accountService" class="com.jh.service.impl.AccountServiceImpl"></bean>

    <!--配置Logger类-->
    <bean id="logger" class="com.jh.utils.Logger"></bean>

    <!--配置AOP-->
    <aop:config>
        <!-- 配置切入点简便表达式:id属性用于指定表达式的唯一标识。expression属性用于指定表达式内容
             此标签写在aop:aspect标签内部只能当前切面使用。
             它还可以写在aop:aspect外面,此时就变成了所有切面可用,必须写在前面(配置AOP的顺序)
         -->
        <aop:pointcut id="pt1" expression="execution(* com.jh.service.impl.*.*(..))"></aop:pointcut>
        <!--配置切面-->
        <aop:aspect id="logAdvice" ref="logger">
            <!--配置前置通知:在切入点方法执行之前执行-->
            <aop:before method="beforePrintLog" pointcut-ref="pt1"></aop:before>
            <!--配置后置通知:在切入点方法正常执行之后执行。它和异常通知永远只能执行一个-->
            <aop:after-returning method="afterReturningPrintLog" pointcut-ref="pt1"></aop:after-returning>
            <!--配置异常通知:在切入点方法执行产生异常之后执行。它和后置通知永远只能执行一个-->
            <aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="pt1"></aop:after-throwing>
            <!--配置最终通知:无论切入点方法是否正常执行它都会在其后面执行-->
            <aop:after method="afterPrintLog" pointcut-ref="pt1"></aop:after>
            <!-- 配置环绕通知 详细的注释请看Logger类中-->
           <aop:around method="aroundPrintLog" pointcut-ref="pt1"></aop:around>
        </aop:aspect>
    </aop:config>
</beans>

도표 :그림 삽입 설명 여기


변경에 대하여 각각 2 층의 XML 구성

서비스 : 인터페이스 변화 없음
서비스 : 구현 클래스

package com.jh.service.impl;
import com.jh.service.IAccountService;
/**
 * 账户的业务层实现类
 * */
public class AccountServiceImpl implements IAccountService {
    @Override
    public void saveAccount() {
        System.out.println("执行了保存");
        //int i=1/0;
        /**结果:
         * 前置通知Logger类中的beforePrintLog方法开始记录日志了。。。
         * 执行了保存
         * 异常通知Logger类中的afterThrowingPrintLog方法开始记录日志了。。。
         * 最终通知Logger类中的afterPrintLog方法开始记录日志了。。。
         * */
    }

    @Override
    public void updateAccount(int i) {
        System.out.println("执行了更新操作:"+i);
    }

    @Override
    public int deleteAccount() {
        System.out.println("执行了删除");
        return 0;
    }
}

다음 예외 문 INT의 존재 나 1/0 =;이 경우에서 System.out.println ( "막아") 할 때 출력 보통 문.
:( 결과 이상 통지 및 사후 통지는 공존 할 수 없습니다 )

前置通知Logger类中的beforePrintLog方法开始记录日志了。。。
执行了保存
异常通知Logger类中的afterThrowingPrintLog方法开始记录日志了。。。
最终通知Logger类中的afterPrintLog方法开始记录日志了。。。

유틸 : Logger 클래스 고지

 package com.jh.utils;
import org.aspectj.lang.ProceedingJoinPoint;
/**
* 用于记录日志的工具类,它里面提供了公共的代码
* */
public class Logger {
  /**前置通知*/
  public  void beforePrintLog(){
      System.out.println("前置通知Logger类中的beforePrintLog方法开始记录日志了。。。");
  }

  /**后置通知*/
  public  void afterReturningPrintLog(){
      System.out.println("后置通知Logger类中的afterReturningPrintLog方法开始记录日志了。。。");
  }

  /**异常通知*/
  public  void afterThrowingPrintLog(){
      System.out.println("异常通知Logger类中的afterThrowingPrintLog方法开始记录日志了。。。");
  }

  /**最终通知*/
  public  void afterPrintLog(){
      System.out.println("最终通知Logger类中的afterPrintLog方法开始记录日志了。。。");
  }

  /**
   * 环绕通知
   * 问题:当我们配置了环绕通知之后,切入点方法没有执行,而通知方法执行了。
   * 分析:
   *通过对比动态代理中的环绕通知代码,发现动态代理的环绕通知有明确的切入点方法调用,而我们的代码中没有。
   * 解决:
   * Spring框架为我们提供了一个接口:ProceedingJoinPoint。该接口有一个方法proceed(),此方法就相当于明确调用切入点方法。
   *该接口可以作为环绕通知的方法参数,在程序执行时,spring框架会为我们提供该接口的实现类供我们使用。
   * spring中的环绕通知:
   *    它是spring框架为我们提供的一种可以在代码中手动控制增强方法何时执行的方式。
   * */
  public Object aroundPrintLog(ProceedingJoinPoint pjp){
      Object rtValue=null;
      try {
          Object[] args=pjp.getArgs();//得到方法执行所需的参数
          System.out.println("Logger类中的aroundPrintLog方法开始记录日志了。。。前置");
          rtValue=pjp.proceed(args);//明确调用业务层方法(切入点方法)
          System.out.println("Logger类中的aroundPrintLog方法开始记录日志了。。。后置");
          return rtValue;
      } catch (Throwable t) {
          System.out.println("Logger类中的aroundPrintLog方法开始记录日志了。。。异常");
         throw new RuntimeException(t);
      } finally {
          System.out.println("Logger类中的aroundPringLog方法开始记录日志了。。。最终");
      }
  }
}

일반적으로 전용 서라운드 결과 통지 :

시작을 로깅 방법 aroundPrintLog Logger 클래스. . . 전면
a는 저장
aroundPrintLog 방법 로거 클래스 A 로깅 시작합니다. . . 후면
시작을 기록 aroundPringLog 방법 Logger 클래스. . . 최후의


테스트 클래스 AOPTest

package com.jh.test;
import com.jh.service.IAccountService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**测试AOP的配置*/
public class AOPTest {
    public static void main(String[] args) {
        //1.获取容器
        ApplicationContext ac=new ClassPathXmlApplicationContext("bean.xml");
        //2.根据id获取service bean对象
        IAccountService as=(IAccountService)ac.getBean("accountService");
        //3.执行方法
        as.saveAccount();
    }
}

사 개 결과를 필기 :( 일반적으로) 단지 3, 후면 던지는 조언이 아닌 존재 수행

사전 통지 Logger 클래스에 대한 BeforePrintLog 방법은 로깅을 시작합니다. . .
A는 저장
최종 통지 afterPrintLog 방법 Logger 클래스는 로깅을 시작합니다. . .
개시를 통지 로그 afterReturningPrintLog 후방 Logger 클래스 방법. . .

결과는 네 가지 서라운드 통지를 발견
조언 결국 최종 통보가 주위에, 일반적으로 조언을 주위에 사용됩니다.

게시 된 101 개 원래 기사 · 원의 찬양 (15) · 전망 6765

추천

출처blog.csdn.net/JH39456194/article/details/104435238