使用@Target、@Retention、@Documented声明ResponseBody注解,阅读下列代码: @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface ResponseBody { String value() default ""; } 关于ResponseBody注解的描述正确的是?
A.注解会被javadoc工具记录
B.注解可以被标记到参数上
C.注解可以被标记在类上
D.注解可以被标记在接口上
正确答案是A