@Target({ElementType.TYPEElementType.METHOD}) public @interface

@Target({ElementType.TYPEElementType.METHOD}) public @interface RequestMapping { String value() default ""; }

A.定义了一个名为RequestMapping的注解

B.该注解可以被标记在类上

C.该注解可以被标记在方法上

D.该注解可以被标记在字段上

正确答案是ABC