@Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) @Repeatable(Insert.List.class)
时间: 2024-03-09 15:29:08 浏览: 175
这是 Java 中的注解声明,包括了四个注解:
- @Documented:指明该注解可以被 javadoc 工具文档化。
- @Retention(RetentionPolicy.RUNTIME):指明该注解会在运行时保留,可以通过反射机制读取。
- @Target({ElementType.METHOD}):指明该注解只能用于方法上。
- @Repeatable(Insert.List.class):指明该注解可以重复使用,需要配合 Insert.List 这个容器注解使用。
简单来说,这个注解声明的作用是用于标记方法,并且可以被反射机制读取,实现重复使用。
阅读全文