构建springboot项目
1、创建一个maven项目
2、引入parent
在POM文件中引入parent,project->paent
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.5</version>
</parent>
3、导入web场景启动器
在POM文件中引入dependencies,project->dependencies
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
4、编写主程序
5、编写一个控制器
6、运行主程序的main方法
让springboot运行起来