码迷,mamicode.com
首页 > 其他好文 > 详细

annotation 自定义注解

时间:2015-09-21 18:02:27      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:


1

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface MyAnnotation {

	String descraption() default "";
	
}

2

@Aspect
@Component
public class AnnotationImplement {

	@Pointcut("@annotation(com.aop.MyAnnotation)")
	public void annotation(){
		//任何代码都不会执行
	}
	
	@Around("annotation()")
	public void afterPoint(ProceedingJoinPoint point){
		
		System.out.println(point.getTarget().getClass().getName());
		Object[] obj = point.getArgs();
		for (int i = 0; i < obj.length; i++) {
			System.out.println(obj.toString());
		}
	}
}


3


annotation 自定义注解

标签:

原文地址:http://my.oschina.net/xwl1990/blog/509192

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!