基于自定义注解+AOP实现日志记录

一、@interface 关键字 我们想定义一个自己的注解 需要使用 @interface 关键字来定义。 如定义一个叫 MyAnnotation 的注解: public @interface MyAnnotation {} 二、元注解 光加上 @interface 关键字 还不够,我