博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】使用import scope解决maven继承(单)问题
阅读量:6700 次
发布时间:2019-06-25

本文共 2152 字,大约阅读时间需要 7 分钟。

测试环境 maven 3.3.9

想必大家在做SpringBoot应用的时候,都会有如下代码:

 

[html] 
 
  1. <parent>  
  2.     <groupId>org.springframework.boot</groupId>  
  3.     <artifactId>spring-boot-starter-parent</artifactId>  
  4.     <version>1.3.3.RELEASE</version>  
  5. </parent>  

继承一个父模块,然后再引入相应的依赖

 

 

假如说,我不想继承,或者我想继承多个,怎么做?

 

我们知道Maven的继承和Java的继承一样,是无法实现多重继承的,如果10个、20个甚至更多模块继承自同一个模块,那么按照我们之前的做法,这个父模块的dependencyManagement会包含大量的依赖。如果你想把这些依赖分类以更清晰的管理,那就不可能了,import scope依赖能解决这个问题。你可以把dependencyManagement放到单独的专门用来管理依赖的pom中,然后在需要使用依赖的模块中通过import scope依赖,就可以引入dependencyManagement。例如可以写这样一个用于依赖管理的pom:

 

[html] 
 
  1. <project>  
  2.     <modelVersion>4.0.0</modelVersion>  
  3.     <groupId>com.test.sample</groupId>  
  4.     <artifactId>base-parent1</artifactId>  
  5.     <packaging>pom</packaging>  
  6.     <version>1.0.0-SNAPSHOT</version>  
  7.     <dependencyManagement>  
  8.         <dependencies>  
  9.             <dependency>  
  10.                 <groupId>junit</groupId>  
  11.                 <artifactid>junit</artifactId>  
  12.                 <version>4.8.2</version>  
  13.             </dependency>  
  14.             <dependency>  
  15.                 <groupId>log4j</groupId>  
  16.                 <artifactid>log4j</artifactId>  
  17.                 <version>1.2.16</version>  
  18.             </dependency>  
  19.         </dependencies>  
  20.     </dependencyManagement>  
  21. </project>  

然后我就可以通过非继承的方式来引入这段依赖管理配置

 

 

[html] 
 
  1. <dependencyManagement>  
  2.     <dependencies>  
  3.         <dependency>  
  4.             <groupId>com.test.sample</groupId>  
  5.             <artifactid>base-parent1</artifactId>  
  6.             <version>1.0.0-SNAPSHOT</version>  
  7.             <type>pom</type>  
  8.             <scope>import</scope>  
  9.         </dependency>  
  10.     </dependencies>  
  11. </dependencyManagement>  
  12.   
  13. <dependency>  
  14.     <groupId>junit</groupId>  
  15.     <artifactid>junit</artifactId>  
  16. </dependency>  
  17. <dependency>  
  18.     <groupId>log4j</groupId>  
  19.     <artifactid>log4j</artifactId>  
  20. </dependency>  

注意:import scope只能用在dependencyManagement里面

 

 

这样,父模块的pom就会非常干净,由专门的packaging为pom来管理依赖,也契合的面向对象设计中的单一职责原则。此外,我们还能够创建多个这样的依赖管理pom,以更细化的方式管理依赖。这种做法与面向对象设计中使用组合而非继承也有点相似的味道。

 

那么,如何用这个方法来解决SpringBoot的那个继承问题呢?

配置如下:

 

[html] 
 
  1. <dependencyManagement>  
  2.     <dependencies>  
  3.         <dependency>  
  4.             <groupId>org.springframework.boot</groupId>  
  5.             <artifactId>spring-boot-dependencies</artifactId>  
  6.             <version>1.3.3.RELEASE</version>  
  7.             <type>pom</type>  
  8.             <scope>import</scope>  
  9.         </dependency>  
  10.     </dependencies>  
  11. </dependencyManagement>  
  12.   
  13. <dependencies>  
  14.     <dependency>  
  15.         <groupId>org.springframework.boot</groupId>  
  16.         <artifactId>spring-boot-starter-web</artifactId>  
  17.     </dependency>  
  18. </dependencies>  

这样配置的话,自己的项目里面就不需要继承SpringBoot的module了,而可以继承自己项目的module了。

转载地址:http://xbwlo.baihongyu.com/

你可能感兴趣的文章
[北京][10-30K] 上过 Apple WWDC,被 Google I/O 推荐的 iHealth(中国)"职"等你!
查看>>
Flume将 kafka 中的数据转存到 HDFS 中
查看>>
SpringBoot | SpringBoot 是如何实现日志的?
查看>>
书写一个管理平台开发常用的通用table组件
查看>>
Xcode 9 快速跳转到定义新姿势(Jump to Definition)
查看>>
js 当数值过大相减精度丢失的一个思路
查看>>
Java杂谈
查看>>
java 现成网站源码 SSM 框架 freemaker静态引擎 springmvc
查看>>
Mac下 Ubuntu 16 04 配置http、https
查看>>
使用docker搭建gitlab以及ci平台,完整版本(使用springboot项目演示)
查看>>
前端基础25:jQuery的一些常用方法
查看>>
Django搭建个人博客:用户的注册
查看>>
正则表达解析 Markdown 语法
查看>>
使用 Kotlin 编写你的第一个 Firefox WebExtension 扩展
查看>>
源码分析 (三) Stack 源码分析
查看>>
android studio - 使用
查看>>
022-会Excel就会数据分析(Kylin2.6.1+Excel+Power BI)
查看>>
SimpleTouch:事件分发可以如此清晰
查看>>
类字面常量
查看>>
javascript实现数据的双向绑定(手动绑定)
查看>>