@Provider
@Consumes("book/plain")
public class FormatBookInPlain implements MessageBodyReader
上述代码中@Consumes的作用是?
A、将FormatBookInPlain中的处理方法绑定到@Consumes("book/plain")对应的API资源处理方法上
B、将MessageBodyReader中的处理方法绑定到@Consumes("book/plain")对应的API资源处理方法上
C、将FormatBookInPlain中的处理方法绑定到@Produces("book/plain")对应的API资源处理方法上
D、将MessageBodyReader中的处理方法绑定到@Produces("book/plain")对应的API资源处理方法上