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

动态代理中的自定义注解样式

时间:2017-08-12 20:27:37      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:ted   targe   动态   runtime   public   定义   policy   ota   interface   

动态代理中的自定义注解的样式

  

@Target(ElementType.METHOD) 代表此注解使用对象是method
@
Retention(RetentionPolicy.RUNTIME) 代表此注解的生存域是运行期
package cn.tedu.anno;

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

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

 

动态代理中的自定义注解样式

标签:ted   targe   动态   runtime   public   定义   policy   ota   interface   

原文地址:http://www.cnblogs.com/liumouren163/p/7351255.html

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