标签: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