Spring-Boot say hello world
Posted sunyangcoder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring-Boot say hello world相关的知识,希望对你有一定的参考价值。
- 在 https://start.spring.io/ 中构建 demo项目
- 用IDE 以maven项目导入
demoApplication代码
@Controller @EnableAutoConfiguration public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } @RequestMapping("/") @ResponseBody String home() { return "hello world"; } }
以上是关于Spring-Boot say hello world的主要内容,如果未能解决你的问题,请参考以下文章