Concept Flow - Request mapping by method and path
Client sends HTTP request
Spring Boot Dispatcher
Check HTTP method (GET, POST, etc.)
Match request path to @RequestMapping path
Call matching controller method
Return response to client
Spring Boot listens for HTTP requests, matches the method and path to controller methods annotated with @RequestMapping, then runs the matched method.