Spring Boot 依赖管理
1. 父项目做依赖管理
无需关注版本号,自动版本仲裁机制
<!-- 依赖管理 -->
<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.3.4.RELEASE</version>
</parent><!-- spring-boot-starter-parent 的父项目 -->
<!-- 几乎声明了所有开发中常用的依赖的版本号 --><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-dependencies</artifactId><version>2.3.4.RELEASE</version></parent>
2. 修改默认版本号
<!-- 查看spring-boot-dependencies里面规定当前依赖的版本用的 key -->
<!-- 在当前项目里面重写配置 就近原则 --><properties><mysql.version>5.1.43</mysql.version></properties>
3. starter 场景启动器
<!-- 包含 spring-web、webmvc、tomcat、json、spring-boot-starter 等依赖 -->
<dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency>
</dependencies><!-- SpringBoot 官方所有支持的场景文档: https://docs.spring.io/spring-boot/docs/current/reference/html/using-spring-boot.html#using-boot-starter -->
<!-- 见到的 *-spring-boot-starter 格式 为第三方为我们提供的简化开发的场景启动器 --><!-- 所有场景启动器最底层的依赖 -->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId><version>2.3.4.RELEASE</version><scope>compile</scope>
</dependency>