Create a simple Rest API within a MVC Framework of your choice.
Create a simple Rest endpoint that allows GET, PUT, UPDATE, DELETE
Heres your starting point :
@Controller
public class RootController {
@GetMapping("/hello")
public String greeting() {
return "FooBar!";
}
}