Spring IO Platform,簡單的能夠認爲是一個依賴維護平臺,該平臺將相關依賴匯聚到一塊兒,針對每一個依賴,都提供了一個版本號;html
這些版本對應的依賴都是通過測試的,能夠保證一塊兒正常使用。git
主要是解決依賴版本衝突問題,例如在使用Spring的時候,常常會使用到第三方庫,通常你們都是根據經驗挑選一個版本號或挑選最新的,隨意性較大,其實這是有問題的,除非作過完整的測試,保證集成該版本的依賴不會出現問題,且後續集成其它第三方庫的時候也不會出現問題,不然風險較大,且後續擴展會愈來愈困難,由於隨着業務複雜度的增長,集成的第三方組件會越來會多,依賴之間的關聯也會也來越複雜。github
好消息是,Spring IO Platform能很好地解決這些問題,咱們在添加第三方依賴的時候,不須要寫版本號,它可以自動幫咱們挑選一個最優的版本,保證最大限度的擴展,並且該版本的依賴是通過測試的,能夠完美的與其它組件結合使用。web
詳細的就不列了,太多了,我這裏截張圖示意下,若是你使用到如下依賴的話,那麼能夠不用聲明版本號:spring
完整的依賴列表請參考以下連接:apache
http://docs.spring.io/platform/docs/current/reference/html/appendix-dependency-versions.htmlapp
Spring IO Platform主要是與依賴管理系統結合一塊兒使用的,例如,能夠完美的支持Maven和Gradle;maven
下面,咱們就分別來了解下在Maven和Gradle中如何使用Spring IO Platform;ide
有兩種方式,一種是使用import導入,另外一種是繼承parent:spring-boot
import方式:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>your-application</artifactId> <version>1.0.0-SNAPSHOT</version> <dependencyManagement> <dependencies> <dependency> <groupId>io.spring.platform</groupId> <artifactId>platform-bom</artifactId> <version>Athens-SR2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> … <!-- Add Spring repositories --> <!-- (you don't need this if you are using a .RELEASE version) --> <repositories> </repositories> <pluginRepositories> </pluginRepositories> </project>
繼承parent:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>your-application</artifactId> <version>1.0.0-SNAPSHOT</version> <parent> <groupId>io.spring.platform</groupId> <artifactId>platform-bom</artifactId> <version>Athens-SR2</version> <relativePath/> </parent> … <!-- Add Spring repositories --> <!-- (you don't need this if you are using a .RELEASE version) --> <repositories> </repositories> <pluginRepositories> </pluginRepositories> </project>
使用繼承的話,除了從父pom中引入Spring IO Platform以外,咱們的應用還會引入一些插件管理的配置,如Spring Boot的Maven插件,咱們能夠利用這一點,而後只須要在<plugins>代碼塊中添加以下代碼便可使用插件:
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
另外,使用繼承的話,還能夠直接覆蓋父類提供的依賴版本號,以下所示:
<properties> <foo.version>1.1.0.RELEASE</foo.version> </properties>
若是你想結合Spring IO Platform和Spring Boot一塊兒使用的話,並非必定要繼承Spring IO Platform POM,能夠選擇使用導入的方式,而後本身將剩下的配置添加到POM裏便可。有興趣能夠參考Spring Boot參考指南的這一章節 using-boot-maven,會講述如何不用繼承方式來使用Spring Boot.
最後,要說的是,不管你使用哪一種方式,都不會有任何依賴添加進來;
當你想在本身的pom裏添加了一個屬於Spring IO Platform中的依賴的時候,能夠直接省略版本號,以下所示:
<dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> </dependencies>
以下所示,咱們會應用io.spring.dependency-management這個插件,而後在dependencyManagement
中導入bom。
buildscript { repositories { jcenter() } dependencies { classpath 'io.spring.gradle:dependency-management-plugin:0.6.0.RELEASE' } } apply plugin: 'io.spring.dependency-management' repositories { mavenCentral() } dependencyManagement { imports { mavenBom 'io.spring.platform:platform-bom:Athens-SR2' } }
當須要添加一個屬於Spring IO Platform中的依賴的時候,寫法與Maven相似,能夠省略版本號,以下所示:
dependencies { compile 'org.springframework:spring-core' }
示例的Pom文件以下:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>helloworld</artifactId> <version>0.0.1-SNAPSHOT</version> <dependencyManagement> <dependencies> <dependency> <groupId>io.spring.platform</groupId> <artifactId>platform-bom</artifactId> <version>Athens-SR2</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <!-- Import dependency management from Spring Boot --> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>1.4.3.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <!-- Additional lines to be added here... --> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>1.4.3.RELEASE</version> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
有幾點注意,這裏咱們沒有繼承Spring Boot的父Pom,也沒繼承Spring IO Platform的父POM,都是選擇導入的方式,因此使用spring-boot-maven-plugin插件的時候,就不能像上一篇那樣自動繼承父POM的配置了,須要本身添加配置,綁定repackage Goal;
另外,想你想要修改依賴版本號的時候,因爲不是繼承,因此不能使用直接覆蓋properties屬性的方法,其實也很簡單,若是不想繼承Spring IO Platform中的依賴版本號的話,本身直接寫上版本號便可,Spring Boot的話,可採用以下方式,來對Spring Data release train進行升級(注意要放在spring-boot-dependencies的前面):
<dependencyManagement>
<dependencies> <!-- Override Spring Data release train provided by Spring Boot --> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-releasetrain</artifactId> <version>Fowler-SR2</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>1.4.3.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
最後,咱們使用Gson庫作個測試,如今maven repository中維護的gson的最新版本是2.8,Spring IO Platform中維護的版本是2.7(有興趣可查閱appendix確認)。
而後當咱們開始構建項目的時候,發現下載的gson版本確實是2.7。
https://github.com/peterchenhdu/helloworld
http://docs.spring.io/platform/docs/2.0.8.RELEASE/reference/htmlsingle/