package net.unit8.waitt.example.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; /** * @author kawasima */ @RestController @RequestMapping("hello") public class HelloController { @RequestMapping(method= RequestMethod.GET) public String hello() { return "Hello Spring MVC"; } }