1. 程式人生 > >@RequestMapping 和 @GetMapping @PostMapping 區別

@RequestMapping 和 @GetMapping @PostMapping 區別

@RequestMapping 和 @GetMapping @PostMapping 區別

@GetMapping是一個組合註解,是@RequestMapping(method = RequestMethod.GET)的縮寫。

@PostMapping是一個組合註解,是@RequestMapping(method = RequestMethod.POST)的縮寫。