标签:区别 patch 注解 color app 特定 method col 处理
Spring4.3中引进了{@GetMapping、@PostMapping、@PutMapping、@DeleteMapping、@PatchMapping} 来帮助简化常用的HTTP方法的映射 并更好地表达被注解方法的语义
该注解将HTTP Get 映射到 特定的处理方法上
@GetMapping是一个组合注解 是@RequestMapping(method = RequestMethod.GET)的缩写
@PostMapping是一个组合注解 是@RequestMapping(method = RequestMethod.POST)的缩写
@RequestMapping 和 @GetMapping @PostMapping 区别
标签:区别 patch 注解 color app 特定 method col 处理
原文地址:https://www.cnblogs.com/aaronRhythm/p/10920692.html