码迷,mamicode.com
首页 > 编程语言 > 详细

step4----->往工程中添加Spring的子项目spring IO Platform------->通过maven添加相关框架(pom.xml)

时间:2016-12-17 23:17:30      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:man   分享   使用   集成   1.5   end   避免   目的   lan   

添加Spring IO Platform的目的:

  避免自己的project的外部依赖(external dependencies)之间产生版本冲突问题。更多详细信息参见:Spring IO Platform概述

具体操作步骤:

  step1,往自己的工程中添加Spring IO Platform

      • 编写project的pom.xml,添加如下代码,引入Spring IO Platform
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>io.spring.platform</groupId>
                    <artifactId>platform-bom</artifactId>
                    <version>Athens-SR1</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
            </dependencies>
        </dependencyManagement>    
 

  step2,使用Spring IO Platform

      • 引入了Spring IO Platform之后,后面再往project中引入external dependencies的时候,可以不用管external dependencies的版本,譬如要引入spring-core这个external dependency,只需要按照如下方式编写pom.xml即可,不用填写<version>标签的值技术分享

         

      • 注意,不引入Spring IO Platform的情况下,如果按照上图配置pom.xml,maven会自动查找Spring-core的最新版本集成到你的project,但是引入了Spring IO Platform的情况下,maven则会集成Spring IO Platform表格中所定义的Spring-core的相应版本到你的project中,不管Spring-core有多少可用版本,最新版本是什么,maven都不会理会,它只会遵照Spring IO Platform表格中定义的版本去构建你的工程

 

      

step4----->往工程中添加Spring的子项目spring IO Platform------->通过maven添加相关框架(pom.xml)

标签:man   分享   使用   集成   1.5   end   避免   目的   lan   

原文地址:http://www.cnblogs.com/lxrm/p/6193244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!