package com.springboottask1; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; @RestController public class HomeController { @RequestMapping("/Home") public String home() { return "Welcome to Home Page .... ."; } }