构建springboot项目

1、创建一个maven项目

2、引入parent

在POM文件中引入parent,project->paent

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.4.5</version>
  5. </parent>

3、导入web场景启动器

在POM文件中引入dependencies,project->dependencies

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-web</artifactId>
  5. </dependency>
  6. </dependencies>

4、编写主程序

创建一个 springboot2 项目并启动 - 图1

5、编写一个控制器

创建一个 springboot2 项目并启动 - 图2

6、运行主程序的main方法

让springboot运行起来
创建一个 springboot2 项目并启动 - 图3

7、查看效果

访问:http://127.0.0.1:8080/hello