이 글에서는 주로 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 'audience' 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 ...
[관련 권장 사항]
3. 자바 주석 종합 분석
위 내용은 Aspect를 기반으로 한 Spring의 향상된 구현 예제에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!