Java自定义Annotation,通过反射解析Annotation
创建一个自定义的Annotationimport java.lang.annotation.*;import java.lang.reflect.Method;@Documented@Target(ElementType.METHOD)@Retention(RetentionPolicy.RUNTIME)public @interface MethodInfo { String author() default "hupeng"; String ver...