get post put delete http request springboot in the

Annotations composition (the deformation RequestMapping)

@GetMapping = @RequestMapping(method = RequestMethod.GET)
@PostMapping = @RequestMapping(method = RequestMethod.POST)
@PutMapping = @RequestMapping(method = RequestMethod.PUT)
@DeleteMapping = @RequestMapping(method = RequestMethod.DELETE

Guess you like

Origin www.cnblogs.com/rh-fernando/p/11235797.html