package
com.in28minutes.rest.webservices.restfulwebservices;
import
org.springframework.web.bind.annotation.RequestMapping;
import
org.springframework.web.bind.annotation.RequestMethod;
import
org.springframework.web.bind.annotation.RestController;
//Controller
@RestController
public class HelloWorldController {
@RequestMapping(method=RequestMethod.GET,path = "/hello-world" )
public String helloWorld() {
return "Hellow World Lokanadham";
}
}