Spring IO Platform簡介及示例
什麽是Spring IO Platform
Spring IO Platform,簡單的可以認為是一個依賴維護平臺,該平臺將相關依賴匯聚到一起,針對每個依賴,都提供了一個版本號;
這些版本對應的依賴都是經過測試的,可以保證一起正常使用。
為什麽要使用Spring IO Platform
主要是解決依賴版本沖突問題,例如在使用Spring的時候,經常會使用到第三方庫,一般大家都是根據經驗挑選一個版本號或挑選最新的,隨意性較大,其實這是有問題的,除非做過完整的測試,保證集成該版本的依賴不會出現問題,且後續集成其它第三方庫的時候也不會出現問題,否則風險較大,且後續擴展會越來越困難,因為隨著業務復雜度的增加,集成的第三方組件會越來會多,依賴之間的關聯也會也來越復雜。
好消息是,Spring IO Platform能很好地解決這些問題,我們在添加第三方依賴的時候,不需要寫版本號,它能夠自動幫我們挑選一個最優的版本,保證最大限度的擴展,而且該版本的依賴是經過測試的,可以完美的與其它組件結合使用。
Spring IO Platform中維護了哪些依賴
詳細的就不列了,太多了,我這裏截張圖示意下,如果你使用到以下依賴的話,那麽可以不用聲明版本號:
完整的依賴列表請參考如下鏈接:
http://docs.spring.io/platform/docs/current/reference/html/appendix-dependency-versions.html
如何使用Spring IO Platform
Spring IO Platform主要是與依賴管理系統結合一起使用的,例如,可以完美的支持Maven和Gradle;
下面,我們就分別來了解下在Maven和Gradle中如何使用Spring IO Platform;
在Maven中使用Spring IO Platform
有兩種方式,一種是使用import導入,另一種是繼承parent:
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>
在Gradle中使用Spring IO Platform
如下所示,我們會應用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‘ }
一個完整的示例,基於Maven, 結合Spring Boot
示例的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。
Spring IO Platform簡介及示例