@GetMapping和@PostMapping
Posted 苏云南雁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@GetMapping和@PostMapping相关的知识,希望对你有一定的参考价值。
这个东西看着就眼熟,在项目中也有用到:
@GetMapping("/msg")
public String msg()
return "this is product's msg";
@GetMapping是一个组合注解,是@RequestMapping(method = RequestMethod.GET)的缩写。
@PostMapping是一个组合注解,是@RequestMapping(method = RequestMethod.POST)的缩写。
其实一般项目中是要区分get和post请求的,未避免忘记写method,应该要写getmapping或者postmapping
以上是关于@GetMapping和@PostMapping的主要内容,如果未能解决你的问题,请参考以下文章
@getMapping和@postMapping,@RestController 区别
@GetMapping和@PostMapping 和@RequestMapping区别
@RequestMapping 和 @GetMapping @PostMapping 区别