7、Delete类和DeleteProvider类
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Delete {
String[] value();
}
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface DeleteProvider {
Class<?> type();
String method();
}
这两个类没有什么可说的。要注意Provider这个单词,以后写开源或者自己写程序可以用上。