Spring Web MVC中的@PostMapping注释是什么?
@PostMapping
Spring MVC中使用注释的目的是什么?
回答:
引入了@PostMapping
注释。
@PostMapping
是充当一个由注释 为
@RequestMapping(method = RequestMethod.POST)
同样,以下注释可用:
@GetMapping @PutMapping
@DeleteMapping
@PatchMapping
这些注释可以提高代码的可读性。
Spring API文档。
以上是 Spring Web MVC中的@PostMapping注释是什么? 的全部内容, 来源链接: utcz.com/qa/434059.html