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

    image.png

    • 每个 spring-boot-starter-* 都包含的、最基本的,底层依赖: ```xml org.springframework.boot spring-boot-starter 2.3.4.RELEASE compile

    ```