首页 > 代码库 > 动态代理中的自定义注解样式

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

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

  

@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 {
}

 

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