2.maven的依赖传递
2.maven的依赖传递
2.1什么是依赖传递
在maven中,依赖是可以传递的,假设存在三个项目,分别是项目A,项目B和项目C。假设C依赖B,B依赖A,那么我们可以根据maven项目依赖的特征不难推出项目C也依赖A。
2.2什么是依赖冲突
由于依赖传递的存在,spring-webmvc依赖spring-beans-4.224,spring-aop依赖spring-beans-5.0.2,但是发现spring-beans-4.2.4加入到了工程中,而我们希望spring-beans-5.0.2加入工程,这就造成了依赖冲突。
2.3如何解决依赖冲突
- 使用maven提供的依赖调解原则。
- 第一声明者优先原则。
- 路劲进者优先原则
- 排除依赖
- 锁定版本
2.4依赖调节原则----第一声明者优先原则
-
在pom文件中定义依赖,以先声明的依赖为准,其实就是根据坐标导入的顺序来确定最终使用哪个传递过来的依赖。
-
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.0.5.RELEASE</version> </dependency> <dependency> <groupId>org.springframeworks</groupId> <artifactId>spring-aop</artifactId> <version>5.0.0RELEASE</version> </dependency>
2.5依赖调节原则---路劲近者优先原则
- 在pom文件中,以路劲进者为准。
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframeworks</groupId>
<artifactId>spring-aop</artifactId>
<version>5.0.0RELEASE</version>
</dependency>
2.6排除依赖
-
可以使用exclusions标签将传递过来的依赖排除出去。
-
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.0.5.RELEASE</version> <!--排除依赖--> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframeworks</groupId> <artifactId>spring-aop</artifactId> <version>5.0.0RELEASE</version> </dependency>
2.7版本锁定
- 采用直接锁定版本的方法确定依赖jar包的版本,版本锁定后不考虑依赖的声明顺序或依赖的路径,以锁定的版本为准添加到工程中,此方法在企业开发中经常使用。
- 版本的锁定
- 在dependencyManagement标签中锁定依赖的版本
- 在dependencies标签中声明需要导入的maven坐标
<dependencyManagement>
<dependencies>
<!-- springMVC -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${springmvc.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- springMVC核心-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
</dependencies>
本文作者:codeFiler
本文链接:https://www.cnblogs.com/coderD/p/13718300.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步