测试环境 maven 3.3.9
想必大家在做SpringBoot应用的时候,都会有如下代码:
-
<parent>
-
<groupId>org.springframework.bootgroupId>
-
<artifactId>spring-boot-starter-parentartifactId>
-
<version>1.3.3.RELEASEversion>
-
parent>
继承一个父模块,然后再引入相应的依赖
假如说,我不想继承,或者我想继承多个,怎么做?
我们知道Maven的继承和Java的继承一样,是无法实现多重继承的,如果10个、20个甚至更多模块继承自同一个模块,那么按照我们之前的做法,这个父模块的dependencyManagement会包含大量的依赖。如果你想把这些依赖分类以更清晰的管理,那就不可能了,import scope依赖能解决这个问题。你可以把dependencyManagement放到单独的专门用来管理依赖的pom中,然后在需要使用依赖的模块中通过import scope依赖,就可以引入dependencyManagement。例如可以写这样一个用于依赖管理的pom:
-
<project>
-
<modelVersion>4.0.0modelVersion>
-
<groupId>com.test.samplegroupId>
-
<artifactId>base-parent1artifactId>
-
<packaging>pompackaging>
-
<version>1.0.0-SNAPSHOTversion>
-
<dependencyManagement>
-
<dependencies>
-
<dependency>
-
<groupId>junitgroupId>
-
<artifactid>junitartifactId>
-
<version>4.8.2version>
-
dependency>
-
<dependency>
-
<groupId>log4jgroupId>
-
<artifactid>log4jartifactId>
-
<version>1.2.16version>
-
dependency>
-
dependencies>
-
dependencyManagement>
-
project>
然后我就可以通过非继承的方式来引入这段依赖管理配置
-
<dependencyManagement>
-
<dependencies>
-
<dependency>
-
<groupId>com.test.samplegroupId>
-
<artifactid>base-parent1artifactId>
-
<version>1.0.0-SNAPSHOTversion>
-
<type>pomtype>
-
<scope>importscope>
-
dependency>
-
dependencies>
-
dependencyManagement>
-
-
<dependency>
-
<groupId>junitgroupId>
-
<artifactid>junitartifactId>
-
dependency>
-
<dependency>
-
<groupId>log4jgroupId>
-
<artifactid>log4jartifactId>
-
dependency>
注意:import scope只能用在dependencyManagement里面
这样,父模块的pom就会非常干净,由专门的packaging为pom来管理依赖,也契合的面向对象设计中的单一职责原则。此外,我们还能够创建多个这样的依赖管理pom,以更细化的方式管理依赖。这种做法与面向对象设计中使用组合而非继承也有点相似的味道。
那么,如何用这个方法来解决SpringBoot的那个继承问题呢?
配置如下:
-
<dependencyManagement>
-
<dependencies>
-
<dependency>
-
<groupId>org.springframework.bootgroupId>
-
<artifactId>spring-boot-dependenciesartifactId>
-
<version>1.3.3.RELEASEversion>
-
<type>pomtype>
-
<scope>importscope>
-
dependency>
-
dependencies>
-
dependencyManagement>
-
-
<dependencies>
-
<dependency>
-
<groupId>org.springframework.bootgroupId>
-
<artifactId>spring-boot-starter-webartifactId>
-
dependency>
-
dependencies>
这样配置的话,自己的项目里面就不需要继承SpringBoot的module了,而可以继承自己项目的module了。