标签 注解 下的文章

Java注解示例-自定义Junit框架 https://zhuanlan.zhihu.com/p/60966151 别忘了设置保留策略为RetentionPolicy.RUNTIME。 代码结构 MyBefore注解 @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface MyBefore { } MyTest注解 @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface M...