Skip to content

Instantly share code, notes, and snippets.

@chbatey
Created February 13, 2014 21:40
Show Gist options
  • Select an option

  • Save chbatey/8984404 to your computer and use it in GitHub Desktop.

Select an option

Save chbatey/8984404 to your computer and use it in GitHub Desktop.
Spring boot: Super simple example app
@Controller
public class ExampleWebAppController {
@RequestMapping("/exampleendpoint")
public @ResponseBody Payload exampleEndpoint(@RequestParam(value="input") String input) {
return new Payload("Something really important: " + input);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment