- 开发导入starter场景启动器:
- 见到很多
spring-boot-starter-*
: *就某种场景。这是官方命名方式。 - 只要引入
starter
,这个场景的所有常规需要的依赖我们都自动引入。 - 更多 SpringBoot所有支持的 starter 场景。
- 见到的
*-spring-boot-starter
: 第三方为我们提供的简化开发的场景启动器。
- 见到很多
<!--SpringBoot的web依赖-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
- web的依赖中,包含所有开发web所需要的jar包。
- 可以点击 spring-boot-starter-web 然后,按 ctrl + shift + alt + U 查看依赖树。
- 每个 spring-boot-starter-* 都包含的、最基本的,底层依赖:
```xml
org.springframework.boot spring-boot-starter 2.3.4.RELEASE compile
```