小编典典

注释 @GetMapping 和 @RequestMapping(method = RequestMethod.GET) 之间的区别

all

@GetMapping和有什么区别@RequestMapping(method = RequestMethod.GET)
我在一些 Spring Reactive 示例中看到过,它 @GetMapping被用来代替@RequestMapping


阅读 76

收藏
2022-07-08

共1个答案

小编典典

@GetMapping是一个组合注释,充当@RequestMapping(method = RequestMethod.GET).

@GetMapping是较新的注释。它支持消费

消费选项是:

消耗 = “text/plain”
消耗 = {“text/plain”, “application/*”}

有关更多详细信息,请参阅: GetMapping
注解

或阅读: 请求映射变体

RequestMapping 也支持消费

GetMapping 我们只能在方法级别应用,而 RequestMapping 注释我们可以在类级别和方法级别应用

2022-07-08