Skip to content

Instantly share code, notes, and snippets.

@lordofthejars
Created September 18, 2014 11:40
Show Gist options
  • Select an option

  • Save lordofthejars/30eba6a85f69a340aa3e to your computer and use it in GitHub Desktop.

Select an option

Save lordofthejars/30eba6a85f69a340aa3e to your computer and use it in GitHub Desktop.
@Controller
@EnableAutoConfiguration
public class SampleController {
@RequestMapping("/")
@ResponseBody
String home() {
return "Hello World!";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleController.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment