In this tutorials explain the following annotation. @GetMapping :- used for HTTP Get request This is an important annotation. i have explained with example below. I have attached the video tutorial below. and explain the easy steps to understand the process. TestController package com.springschool.firstapp.controller; import org.springframework.web.bind.annotation.*; @RestController @CrossOrigin @RequestMapping("api/v1/test") public class TestController { @GetMapping(path = "/get-Text-1") public String getMyApp() { …