package com.example.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloDemo {
@RequestMapping ("/hello")
public String hello(){
return "Hello world";
}
}