1.file--new--project
2. 选择maven,选择jdk
3.点击Create from archetype 选择maven-archetype-webapp
4.选择自己maven的下载位置
位置3是根据你maven配置自动配置的maven仓库
位置2可能要手动修改到对应的setting.xml文件中
5.创建后的样子
6.鼠标指向src 右键 new---directory
7.如果全选图片中的文件
8.完成后的项目目录如下
9.修改pom.xml中的配置文件
9.1 删除pom文件中的build标签的依赖
9.2 在pom.xml中导入父依赖
<!--1.继承springboot父项目-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.0</version>
</parent>
<dependencies>
<!--spring-boot-stater-web-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--引入springboot-stater-test-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<!--scope test 仅仅在测试时有效 运行 打包 不生效-->
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
10.创建application.properties文件
在如下位置配置application.properties文件即可
11.创建springboot入口函数
package com.java;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MavenSpringbootApplication {
public static void main(String[] args) {
SpringApplication.run(MavenSpringbootApplication.class,args);
}
}
12.创建controller类
package com.java.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/hello")
public class HelloController {
@RequestMapping("/ini")
public String sayHi(){
return "hello springboot!";
}
}
13 启动springboot入口函数
14.访问创建的项目
最后就运行springboot项目成功啦
感谢支持哈!!!