>  기사  >  Java  >  Aspect를 기반으로 한 Spring의 향상된 구현 예제에 대한 자세한 설명

Aspect를 기반으로 한 Spring의 향상된 구현 예제에 대한 자세한 설명

Y2J
Y2J원래의
2017-05-08 15:36:571729검색

이 글에서는 주로 Aspect 주석을 기반으로 한 Spring의 향상된 구현에 대한 자세한 설명을 소개하는데, 이는 매우 실용적인 가치가 있습니다. 필요한 친구는

을 참조하여 문서를 정리하고 Spring의 코드를 검색할 수 있습니다. Aspect 주석을 기반으로 향상된 구현, 공유를 위해 약간 구성되고 간소화됨

기본 엔터티 클래스 정의

package com.advice;

/**
 * @author Duoduo
 * @version 1.0
 * @date 2017/4/25 23:41
 */
public class Performer {

  public void doPerform() {
    System.out.println("Performer do perform ....................... ");
  }
}

주석을 기반으로 향상된 클래스 정의

package com.advice;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;

/**
 * @author Duoduo
 * @version 1.0
 * @date 2017/4/25 23:42
 */

@Aspect//定义切面
public class Audience {

  //定义切点
  @Pointcut("execution(* com.advice.Performer.doPerform(..))")
  public void doPerform(){}

  @Before("doPerform()")
  public void takeSeas() {
    System.out.println("The audience is taking their seats.");
  }

  @Before("doPerform()")
  public void turnOffPhone() {
    System.out.println("The audience is turn off their cellphone.");
  }

  @AfterReturning("doPerform()")
  public void applaund() {
    System.out.println("CLAP CLAP CLAP CLAP ...");
  }

  @AfterThrowing("doPerform()")
  public void demandRefund() {
    System.out.println("Boo! we want our money back!");
  }

  @Around("doPerform()")
  public void watchPerfomance(ProceedingJoinPoint joinPoint) {

    try {
      Long start = System.currentTimeMillis();

      joinPoint.proceed();

      long end = System.currentTimeMillis();

      System.out.println("The performance took "+(end-start)+" milliseconds");

    } catch (Throwable throwable) {
      throwable.printStackTrace();
    }


  }
}

Spring 자동 프록시 구성

<!-- aop 增强自动代理 -->
<aop:aspectj-autoproxy/>
<bean id="audience" class="com.advice.Audience"/>
<bean id="performer" class="com.advice.Performer"/>

Junit 테스트

@Test
  public void testDoPerform() throws Exception {
    ApplicationContext context = new ClassPathXmlApplicationContext("classpath:smart-context.xml");
    //代理为指向Interface的代理
    Performer performer = (Performer) context.getBean("performer");

    System.out.println("+++++++++++++++++++++++++++++++++");
    performer.doPerform();
  }

테스트 결과

+++++++++++++++++++++++++++++++++
2017-04-26 20:51:16,980 DEBUG [main] (AbstractBeanFactory.java:251) - Returning cached instance of singleton bean &#39;audience&#39;
The audience is taking their seats.
The audience is turn off their cellphone.
Performer do perform ....................... 
The performance took 91 milliseconds
CLAP CLAP CLAP CLAP ...

[관련 권장 사항]

Java 무료 동영상 튜토리얼

2. 알리바바 자바 개발 매뉴얼

3. 자바 주석 종합 분석

위 내용은 Aspect를 기반으로 한 Spring의 향상된 구현 예제에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.