@GetMapping
和@RequestMapping(method = RequestMethod.GET)
有什么区别?
我在一些Spring Reactive示例中看到了
使用@GetMapping
代替@RequestMapping
最佳答案
@GetMapping
是一个组合的批注,用作@RequestMapping(method = RequestMethod.GET)
的快捷方式。@GetMapping
是较新的注释。
支持消费
消耗选项为:
消耗=“文本/纯文本”
消耗= {“文本/纯文本”,“应用程序/*”}
有关更多详细信息,请参见:
GetMapping Annotation
或阅读:
request mapping variants
RequestMapping支持以及消耗
GetMapping我们只能应用于方法级别,而RequestMapping注释可以应用于类级别以及方法级别