[SpringBoot2]依赖管理

Posted 唐火

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[SpringBoot2]依赖管理相关的知识,希望对你有一定的参考价值。

依赖管理

  • 父项目做依赖管理
<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.4.RELEASE</version>
</parent>
  • 他的父项目
 <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-dependencies</artifactId>
    <version>2.3.4.RELEASE</version>
  </parent>

几乎声明了所有开发中常用的依赖的版本号,自动版本仲裁机制

  • 无需关注版本号,自动版本仲裁

1、引入依赖默认都可以不写版本
2、引入非版本仲裁的jar,要写版本号。

举例:

我们先引入数据库依赖:

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>

如果要改版本的话:

1、查看spring-boot-dependencies里面规定当前依赖的版本 用的 key。
2、在当前项目里面重写配置

    <properties>
        <mysql.version>5.1.43</mysql.version>
    </properties>
  • 开发导入starter场景启动器

1、见到很多 spring-boot-starter-* : *就某种场景
2、只要引入starter,这个场景的所有常规需要的依赖我们都自动引入
3、SpringBoot所有支持的场景
https://docs.spring.io/spring-boot/docs/current/reference/html/using-spring-boot.html#using-boot-starter
4、见到的 *-spring-boot-starter: 第三方为我们提供的简化开发的场景启动器。
5、所有场景启动器最底层的依赖

org.springframework.boot
spring-boot-starter
2.3.4.RELEASE
compile

以上是关于[SpringBoot2]依赖管理的主要内容,如果未能解决你的问题,请参考以下文章

三SpringBoot2核心技术——SpringBoot特点

三SpringBoot2核心技术——SpringBoot特点

SpringBoot2基础入门 --- 了解自动配置原理

SpringBoot2.0 整合 Shiro 框架,实现用户权限管理

SpringBoot2.0 基础案例(08):集成Redis数据库,实现缓存管理

SpringBoot2.0 基础案例(08):集成Redis数据库,实现缓存管理