Spring IO Platform

来源:互联网 发布:网络直播发展趋势 编辑:程序博客网 时间:2024/06/04 08:21

spring不同模块或者与外部进行集成时,依赖处理就需要各自对应版本号。比如,较新spring与较老的quartz,它们集成就会遇到问题,给搭建和升级带来不便。因此Spring IO Platform应运而生,只要项目中引入了它,外部集成时依赖关系无需版本号。Spring IO Platform只是一个pom文件,记录了spring与其他开源项目对应的版本。省去了版本号,也就省去了处理依赖时的问题,因为Spring IO Platform中有最优的版本配置。SpringSource为了解决这些Jar冲突,推出了各种BOM,当然最著名的就是spring platform io bom,其中最核心的三个是:spring-framework-bom、spring-boot-dependencies、platform-bom。对于Spring工程来说,直接在pom.xml文件中添加如下配置代码,即可免去管理版本冲突的难题.

<properties>    <spring.version>4.1.3.RELEASE</spring.version></properties><dependencyManagement>   <dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-framework-bom</artifactId><version>${spring.version}</version><type>pom</type> <scope>import</scope></dependency></dependencies></dependencyManagement>此时,所有使用的spring模块dependency都不需要在声明version属性。例如:<dependency><groupId>org.springframework</groupId><artifactId>spring-web</artifactId></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId></dependency>
原创粉丝点击