Monday, 28 October 2019

Creating a Hello World service












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";
    }

}