1. 程式人生 > >Spring IO Platform學習

Spring IO Platform學習

轉自https://www.cnblogs.com/chenliyang/p/6542867.html

什麼是Spring IO Platform

Spring IO Platform,簡單的可以認為是一個依賴維護平臺,該平臺將相關依賴匯聚到一起,針對每個依賴,都提供了一個版本號;

這些版本對應的依賴都是經過測試的,可以保證一起正常使用。

為什麼要使用Spring IO Platform

主要是解決依賴版本衝突問題,例如在使用Spring的時候,經常會使用到第三方庫,一般大家都是根據經驗挑選一個版本號或挑選最新的,隨意性較大,其實這是有問題的,除非做過完整的測試,保證整合該版本的依賴不會出現問題,且後續整合其它第三方庫的時候也不會出現問題,否則風險較大,且後續擴充套件會越來越困難,因為隨著業務複雜度的增加,整合的第三方元件會越來會多,依賴之間的關聯也會也來越複雜。

好訊息是,Spring IO Platform能很好地解決這些問題,我們在新增第三方依賴的時候,不需要寫版本號,它能夠自動幫我們挑選一個最優的版本,保證最大限度的擴充套件,而且該版本的依賴是經過測試的,可以完美的與其它元件結合使用。

Spring IO Platform中維護了哪些依賴

詳細的就不列了,太多了,我這裡截張圖示意下,如果你使用到以下依賴的話,那麼可以不用宣告版本號:

更多詳細https://docs.spring.io/platform/docs/current/reference/html/appendix-dependency-versions.html

如何使用Spring IO Platform

Spring IO Platform主要是與依賴管理系統結合一起使用的,例如,可以完美的支援Maven和Gradle;

下面,我們就分別來了解下在Maven中如何使用Spring IO Platform;

在Maven中使用Spring IO Platform

有兩種方式,一種是使用import匯入,另一種是繼承parent:

import方式:

<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>SolaSecurity</groupId>
  <artifactId>security</artifactId>
  <version>1.0.0</version>
  <packaging>pom</packaging>
  
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>io.spring.platform</groupId>
                <artifactId>platform-bom</artifactId>
                <version>Cairo-SR5</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <!-- Dependency declarations -->
</project>

繼承parent:

<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>SolaSecurity</groupId>
	<artifactId>security</artifactId>
	<version>1.0.0</version>
	<packaging>pom</packaging>

	<parent>
        <groupId>io.spring.platform</groupId>
        <artifactId>platform-bom</artifactId>
        <version>Brussels-SR14</version>
        <relativePath/>
    </parent>
	
	<!-- Dependency declarations -->
</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>

一個完整的示例,基於Maven, 結合Spring Boot

 示例的Pom檔案如下:

<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>SolaSecurity</groupId>
	<artifactId>security</artifactId>
	<version>1.0.0</version>
	<packaging>pom</packaging>

	<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>
	
	<!-- Dependency declarations -->
</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。

 

 

個人配置父模組

<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>SolaSecurity</groupId>
	<artifactId>security</artifactId>
	<version>1.0.0</version>
	<packaging>pom</packaging>
 
	<parent>
        <groupId>io.spring.platform</groupId>
        <artifactId>platform-bom</artifactId>
        <version>Cairo-SR5</version>
        <relativePath/>
    </parent>
	
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<spring-cloud.version>Finchley.SR2</spring-cloud.version>
	</properties>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.springframework.cloud</groupId>
				<artifactId>spring-cloud-dependencies</artifactId>
				<version>${spring-cloud.version}</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>

	<build>
		<plugins>
			<!--指定使用maven打包 -->
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<classifier>exec</classifier> <!-- 打包fat jar -->
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<skipTests>true</skipTests>    <!--預設關掉單元測試 -->
				</configuration>
			</plugin>
		</plugins>
	</build>
	
	<modules>
		<module>security-core</module>
	</modules>
</project>

子模組引用

<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>
  <parent>
    <groupId>SolaSecurity</groupId>
    <artifactId>security</artifactId>
    <version>1.0.0</version>
  </parent>
  <artifactId>security-core</artifactId>
  
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
	</dependencies>
</project>