Concept Flow - @GetMapping for GET requests
Client sends GET request
Spring Boot matches URL
@GetMapping method called
Method executes and returns data
Spring Boot sends response back to client
This flow shows how a GET request from a client is handled by a Spring Boot controller method annotated with @GetMapping, which returns data back to the client.