REST Web Services with Postman Part-1 | [Hindi] #01

Опубликовано: 09 Февраль 2026
на канале: Programming Galaxy
141
2

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