If you want to download Postman , then Click here....👇
https://www.postman.com/downloads/
If you want to download introduction PDF then click here...👇
https://drive.google.com/file/d/1KCva...
If you want to download this example then click here....👇
https://drive.google.com/file/d/1aCFK...
Important Note : -
@PostMapping annotation maps HTTP POST requests onto specific handler methods. It is a composed annotation that acts as a shortcut for @RequestMapping(method = RequestMethod.POST).
@GetMapping annotation maps HTTP GET requests onto specific handler methods. It is a composed annotation that acts as a shortcut for @RequestMapping(method = RequestMethod.GET).
@PutMapping annotation maps HTTP PUT requests onto specific handler methods. Specifically, It is a composed annotation that acts as a shortcut for @RequestMapping(method = RequestMethod.PUT).
#restwebservice #restful