yb课堂 新版SSM-SpringBoot2.X 后端项目框架搭建 《二》
在线创建
https://start.spring.io/
依赖项
Spring Boot核心包
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>

![yb课堂 新版SSM-SpringBoot2.X 后端项目框架搭建 《二》
[编程语言教程]](https://www.zixueka.com/wp-content/uploads/2024/02/1706717664-c45efa651d14b43.jpg)

