Introduction
Request mapping connects web addresses and HTTP methods to specific code that runs when someone visits those addresses.
You want to run different code when someone visits different web pages.
You need to handle GET requests to show data and POST requests to save data.
You want to organize your web app so each URL does a clear job.
You want to make a REST API where each URL and method means something specific.