本文共 1478 字,大约阅读时间需要 4 分钟。
注意以下使用 Spring boot 1.5.2
4.0.0 api.netkiller.cn api.netkiller.cn 0.0.1-SNAPSHOT Skyline skylinechencf@gmail.com org.springframework.boot spring-boot-starter-parent 1.4.0.RELEASE org.springframework.boot spring-boot-starter-web src maven-compiler-plugin 3.3
package hello;import org.springframework.boot.*;import org.springframework.boot.autoconfigure.*;import org.springframework.stereotype.*;import org.springframework.web.bind.annotation.*;@Controller@EnableAutoConfigurationpublic class SampleController { @RequestMapping("/") @ResponseBody String home() { return "Hello World!"; } public static void main(String[] args) throws Exception { SpringApplication.run(SampleController.class, args); }}
测试
curl http://127.0.0.1:8080/