springboot之HelloWorld

本文使用IDEA开发。

  • create new project
    springboot之HelloWorld

  • maven信息
    springboot之HelloWorld

  • 依赖
  1. lombok
    springboot之HelloWorld
  2. web
    springboot之HelloWorld
  • 项目目录
    springboot之HelloWorld

  • Controller
@RestController
public class HelloWorldController {
    @GetMapping("hello-world")
    public String helloWorld() {
        return "hello world";
    }
}
  • url
    http://localhost:8080/hello-world

  • 结果
    springboot之HelloWorld

上一篇:Maven 项目


下一篇:DataNode的工作机制