通常,通过@RequestMapping来对http请求进行注解会采用如下方式:
@RequestMapping(value = {"/version"}, method = {RequestMethod.GET}) 或 @RequestMapping(value = {"/login"}, method = {RequestMethod.POST}) // 如果没有指定method则同时支持Get,Post,Head,Options等所有的请求方式
但从spring4.3开始引入了几个细分的注解来简化@RequestMapping的写法:
@GetMapping
@PostMapping
@PutMapping
@DeleteMapping
@PatchMapping
上面每个注解都对应原来@RequestMapping中method对应的参数值。
如果你使用类似Sonar代码检查工具会有如下提示:
SonarLint: Replace "@RequestMapping(method = RequestMethod.GET)" with "@GetMapping"
1
因此,如果你在使用spring4.3及以上版本,建议直接使用简化之后的注解。