Google News
logo
Java Spring MVC - Interview Questions
Name the annotations used to handle different types of incoming HTTP request methods?
The following annotations are used to handle different types of incoming HTTP request methods :
 
*  @GetMapping
*  @PostMapping
*  @PutMapping
*  @PatchMapping
*  @DeleteMapping

Advertisement