1.1,idea新建springboot项目

1,File -> new -> Project

 2,Spring Initializr -> 填写相关内容 -> Next

3,填写GAV等内容 -> Next

4,选择依赖 -> Next

也可以直接Next,之后在Pom.xml中添加依赖

 5,填写项目名称以及本地存放项目的地址 -> Finish

6,idea自动打开项目

可选在当前窗口打开,或者在新窗口打开

 7,启动测试

7.1,指定端口

7.2,下载spring-web依赖,用来测试网络接口

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

 可以在步骤4中即搜索这个依赖并选则导入

7.3,编写测试代码

 

 7.4,启动项目

7.5,测试

 

posted @ 2022-06-23 10:16  seeAll  阅读(33)  评论(0编辑  收藏  举报