RequestMapping

RequestMapping中的method方法
method:指定请求的method类型, GET、POST、PUT、DELETE等;

GetMapping

看一下注解的底层源码
RequestMapping与GetMapping、PutMapping等注解的区别_request

可以看到底层用了@RequestMapping(method = RequestMethod.GET)注解
限制了接收到请求的method类型,相当于是组合注解
其中下面的注解原理也是一样
@PostMapping
@PutMapping
@DeleteMapping
@PatchMapping
@RequestMapping

总结

其他注解和RequestMapping相比就是加了method限制,