Concept Flow - @RequestBody for JSON input
Client sends HTTP POST with JSON body
Spring Boot Controller receives request
@RequestBody annotation tells Spring to parse JSON
Spring converts JSON to Java object
Controller method uses Java object
Controller returns response
This flow shows how Spring Boot uses @RequestBody to convert incoming JSON into a Java object for the controller to use.