Skip to content

Instantly share code, notes, and snippets.

@hyunc
Created September 13, 2015 07:32
Show Gist options
  • Save hyunc/eeb9bb7e3cf2c1b910b1 to your computer and use it in GitHub Desktop.
Save hyunc/eeb9bb7e3cf2c1b910b1 to your computer and use it in GitHub Desktop.
blog
package demo.web;
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;
@Controller
@EnableAutoConfiguration
public class SampleController {
@RequestMapping("/")
@ResponseBody
String home() {
return "Hello World!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment