摘要:
简单使用,利用反射获取注解值package annotation;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;/** @Target标识该注解使用范围,Method表示用于方法声明处 */@Target(ElementType.METHOD)/** @Retention标志该注解的使用时机,RUNTIME表示VM运行时保留注解 阅读全文