Concept Flow - @RequestMapping for base paths
Start Application
Scan Controller Class
Find @RequestMapping at Class Level
Set Base Path for All Methods
Scan Methods with @RequestMapping
Combine Base Path + Method Path
Handle Incoming HTTP Request
Match Request URL to Combined Path
Yes No
Call Method
Send Response
End
The flow shows how Spring Boot reads a controller's base path from @RequestMapping on the class, then combines it with method-level paths to match incoming requests.