Spring-AOP@AspectJ 절 점 함수 의@annotation()용법
6694 단어 Spring-AOP@AspectJ@annotation
@annotation 은 어떤 주해 의 모든 방법 을 표시 했다.
다음은 하나의 실례 를 통 해@annotation()의 용법 을 설명 합 니 다.AnnotationTestAspect 는 NeedTest 를 표시 하 는 목표 방법 에 사용 할 뒷 절단면 강 화 를 정의 합 니 다.
실례
코드 가 Github 에 위탁 되 었 습 니 다.>https://github.com/yangshangwei/SpringMaster
우선 주석@NeedTest 를 사용자 정의 합 니 다.
어떻게 사용자 정의 주 해 를 참고 하 십시오.
package com.xgj.aop.spring.advisor.aspectJ.function;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
*
* @ClassName: NeedTest
*
* @Description: @NeedTest
*
* @author: Mr.Yang
*
* @date: 2017 8 26 11:19:12
*/
//
@Retention(RetentionPolicy.RUNTIME)
//
@Target(ElementType.METHOD)
@Documented
public @interface NeedTest {
//
boolean value() default false;
}
다음은 인터페이스 Waiter 를 정의 합 니 다.
package com.xgj.aop.spring.advisor.aspectJ.function;
public interface Waiter {
public void greetTo(String clientName);
public void serverTo(String clientName);
}
인터페이스 구현 클래스 두 개의 NaiveWaiter 와 NaughtWaiter
package com.xgj.aop.spring.advisor.aspectJ.function;
public class NaiveWaiter implements Waiter {
@NeedTest(true)
@Override
public void greetTo(String clientName) {
System.out.println("NaiveWaiter:greet to " + clientName);
}
@Override
public void serverTo(String clientName) {
System.out.println("NaiveWaiter:server to " + clientName);
}
public void smile(String clientName, int times) {
System.out.println("NaiveWaiter:smile to " + clientName + " " + times
+ " times");
}
}
package com.xgj.aop.spring.advisor.aspectJ.function;
public class NaughtWaiter implements Waiter {
@Override
public void greetTo(String clientName) {
System.out.println("NaughtWaiter:greet to " + clientName);
}
@NeedTest(true)
@Override
public void serverTo(String clientName) {
System.out.println("NaughtWaiter:server to " + clientName);
}
public void joke(String clientName, int times) {
System.out.println("NaughtyWaiter:play " + times + " jokes to "
+ clientName);
}
}
NaiveWaiter\#greetTo()방법 은@NeedTest 라 고 표시 되 어 있 고 NaughtWaiter\#server To()도@NeedTest 라 고 표시 되 어 있 습 니 다.@NeedTest 라 고 표 시 된 두 가지 방법 에 뒷 장 치 를 추가 하 는 것 이 목표 입 니 다.다음은 절단면 의 횡단 논 리 를 작성 하 겠 습 니 다.
package com.xgj.aop.spring.advisor.aspectJ.function.annotationFun;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
/**
*
*
* @ClassName: AnnotationTestAspect
*
* @Description: 、 ,@annotation
*
* @author: Mr.Yang
*
* @date: 2017 8 26 11:23:53
*/
@Aspect
public class AnnotationTestAspect {
@AfterReturning("@annotation(com.xgj.aop.spring.advisor.aspectJ.function.NeedTest)")
public void needTest() {
System.out.println("needTest() executed,some logic is here");
}
}
다음은 Spring 을 통 해 절단면 을 자동 으로 적용 합 니 다.프로필 은 다음 과 같 습 니 다.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
<!-- Schema aop -->
<!-- @AspectJ -->
<aop:aspectj-autoproxy/>
<!-- Bean -->
<bean id="naiveWaiter" class="com.xgj.aop.spring.advisor.aspectJ.function.NaiveWaiter"/>
<bean id="naughtWaiter" class="com.xgj.aop.spring.advisor.aspectJ.function.NaughtWaiter"/>
<!-- @AspectJ -->
<bean class="com.xgj.aop.spring.advisor.aspectJ.function.annotationFun.AnnotationTestAspect"/>
</beans>
마지막 으로 테스트 코드 작성:
package com.xgj.aop.spring.advisor.aspectJ.function.annotationFun;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.xgj.aop.spring.advisor.aspectJ.function.Waiter;
public class AnnotationTestAspcetTest {
@Test
public void test() {
ApplicationContext ctx = new ClassPathXmlApplicationContext(
"com/xgj/aop/spring/advisor/aspectJ/function/annotationFun/conf-annotation.xml");
// ,
Waiter waiter = (Waiter) ctx.getBean("naiveWaiter");
// greetTo @NeedTest,
waiter.greetTo("XiaoGongJiang");
waiter.serverTo("XiaoGongJiang");
Waiter naughtWaiter = (Waiter) ctx.getBean("naughtWaiter");
// serverTo @NeedTest,
naughtWaiter.serverTo("XiaoGongJiang");
}
}
실행 결과:2017-08-27 01:24:22,551 INFO [main] (AbstractApplicationContext.java:583) - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@6ac604: startup date [Sun Aug 27 01:24:22 BOT 2017]; root of context hierarchy
2017-08-27 01:24:22,647 INFO [main] (XmlBeanDefinitionReader.java:317) - Loading XML bean definitions from class path resource [com/xgj/aop/spring/advisor/aspectJ/function/annotationFun/conf-annotation.xml]
NaiveWaiter:greet to XiaoGongJiang
needTest() executed,some logic is here
NaiveWaiter:server to XiaoGongJiang
NaughtWaiter:server to XiaoGongJiang
needTest() executed,some logic is here
출력 결과 에서 알 수 있 듯 이 절단면 은@NeedTest 주석 이 표 시 된 방법 으로 정확하게 짜 여 져 있 습 니 다.
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Spring-AOP@AspectJ 절 점 함수 의@annotation()용법다음은 하나의 실례 를 통 해@annotation()의 용법 을 설명 합 니 다.AnnotationTestAspect 는 NeedTest 를 표시 하 는 목표 방법 에 사용 할 뒷 절단면 강 화 를 정의 합 니 다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.