1、依赖管理机制

    • spring-boot-starter-parent 主要功能就是依赖管理、版本控制。
    • 添加了 spring-boot-starter-parent ,之后再添加其的 jar 都不需要再添加、指定版本。 ```xml 依赖管理(SpringBoot的父级项目依赖) org.springframework.boot spring-boot-starter-parent 2.3.4.RELEASE

    上面项目的父项目如下:

    org.springframework.boot spring-boot-dependencies 2.3.4.RELEASE
    1. [
    2. ](https://blog.csdn.net/u011863024/article/details/113667634)
    3. - **查看版本自动仲裁机制:**
    4. ![](https://cdn.nlark.com/yuque/0/2021/jpeg/13019604/1630949539092-e0932ce9-bffd-44c5-ae30-13eeef14ae6e.jpeg)
    5. **2、不想使用依赖管理的版本号,使用自定义版本号的方法:**
    6. - **在 **spring-boot-dependencies 里面查看当前依赖的版本 用的 key
    7. - pom.xml 中定义一个<properties>标签,里面指定 命名标签及版本信息。位置在<dependencies>标签同级。
    8. ```xml
    9. <properties>
    10. <activemq.version>5.15.13</activemq.version>
    11. </properties>