在项目中多模块使用的时候一般在父工程内定义统一的依赖版本,如下
<dependencyManagement>
<dependencies>
<!--spring boot 公共版本定义-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--spring cloud 公共版本定义-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--spring cloud alibaba-->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>${spring-cloud-alibaba.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
这样做的好处是:
1.统一管理一个最初的版本,不需要到处定义
2.子model引入依赖只需要指定groupId、artifactId即可(版本号继承父类)
3.<dependencyManagement>只会定义一个统一的初始的版本,但是不会真的引入依赖,子model不会继承parent中dependencyManagement所有预定义的depandency
那么问题来了,为了便于管理那么在父工程内dependencyManagement中添加了多个依赖,这对于子model来说就是多个父model(也可以理解为多个<parent></parent>标签),而maven的继承和java的继承规范化是一致的,
那么如何处理让子model可以多继承父model,答案就是在每个依赖中添加<type>pom</type><scope>import</scope>;
<type></type> 里的值默认值是jar表示引入的是jar包,这里使用的是pom表示导入的是父模块;
<scope></scope>中的值import代表把父模块中的jar包导入进来,不过需要注意的是<scope>import</scope>,这种方式只能用在<dependencyManagement></dependencyManagement>中。