Card 05/ 06
All 6 cards
ExerciseDifficulty: Advanced1 min
Write the Endpoint
Write a handler for DELETE /rides/{id} that removes a ride and returns 204 No Content — no body, since there's nothing left to describe.
See a solution
@DeleteMapping("/{id}")
ResponseEntity<Void> deleteRide(@PathVariable String id) {
rides.remove(id);
return ResponseEntity.noContent().build();
}