Concept Flow - @PutMapping and @DeleteMapping
Client sends HTTP PUT request
@PutMapping method matches URL
Method updates resource
Return updated resource or status
Client sends HTTP DELETE request
@DeleteMapping method matches URL
Method deletes resource
Return deletion confirmation or status
The flow shows how HTTP PUT and DELETE requests are handled by Spring Boot methods annotated with @PutMapping and @DeleteMapping to update or delete resources.