
REQUEST MAPPING 💛
@RequestMapping("/api/users") ← applies to ALL methods below
@GetMapping("/{id}") → GET /api/users/{id} @PostMapping → POST /api/users @PutMapping("/{id}") → PUT /api/users/{id}
@DeleteMapping("/{id}") // → DELETE /api/users/{id}
#CtrlPlusCode #Java

English
