Skip to content

Instantly share code, notes, and snippets.

@donchan922
Created June 1, 2019 04:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donchan922/832ae47e7952e37d2fc8cc9cdb6c8961 to your computer and use it in GitHub Desktop.
Save donchan922/832ae47e7952e37d2fc8cc9cdb6c8961 to your computer and use it in GitHub Desktop.
@Controller
public class DemoController {
@RequestMapping(value = "/", method = RequestMethod.GET)
public @ResponseBody String greeting() {
return "Hello World";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment