依賴管理利器---Spring IO Platform解決Spring組合依賴問題實戰

FeelTouch發表於2019-03-21

Spring IO Platform簡介

Spring IO Platform,主要是解決依賴版本衝突問題,簡單的可以認為是一個依賴維護平臺,該平臺將相關依賴匯聚到一起,針對每個依賴,都提供了一個版本號;這些版本對應的依賴都是經過測試的,可以保證一起正常使用。

Spring IO Platform優勢

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

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

Spring IO Platform使用方法

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

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

使用繼承的話,除了從父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>

Spring IO Platform實戰

採用更為簡潔的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>feeler.com</groupId>
    <artifactId>universe.feeler.com</artifactId>
    <packaging>pom</packaging>
    <version>1.0-SNAPSHOT</version>

    <modules>
        <module>apple-feeler-com</module>
        <module>banana-feeler-com</module>
    </modules>

    <!-- do not necessary any more -->
<!--    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.9.RELEASE</version>
        <relativePath/>
    </parent>-->

    <dependencyManagement>
        <dependencies>
            <!-- Spring IO Platform https://docs.spring.io/platform/docs/Brussels-SR6/reference/htmlsingle/ -->
            <dependency>
                <groupId>io.spring.platform</groupId>
                <artifactId>platform-bom</artifactId>
                <version>Brussels-SR6</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <surefire.version>2.19.1</surefire.version>
        <docker.image.prefix>styletang</docker.image.prefix>
    </properties>

    <dependencies>

        <dependency>
            <groupId>org.elasticsearch</groupId>
            <artifactId>elasticsearch</artifactId>
            <version>6.3.2</version>
        </dependency>

        <dependency>
            <groupId>org.elasticsearch.client</groupId>
            <artifactId>elasticsearch-rest-high-level-client</artifactId>
            <version>6.3.2</version>
        </dependency>


        <!-- springboot核心包-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <!--<version>1.5.9.RELEASE</version>-->
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
            <!--<version>1.5.9.RELEASE</version>-->
        </dependency>

        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-api</artifactId>
            <!--<version>2.7</version>-->
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
            <!--<version>2.7</version>-->
        </dependency>

        <!-- jdbcTemple  -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
            <!--<version>1.5.9.RELEASE</version>-->
        </dependency>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <!--<version>3.5</version>-->
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <!--<version>1.5.9.RELEASE</version>-->
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <!--<version>1.5.9.RELEASE</version>-->
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
            <!--<version>1.5.9.RELEASE</version>-->
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <!--<version>1.16.18</version>-->
        </dependency>

        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <!--<version>20.0</version>-->
        </dependency>

        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <!--<version>2.8.2</version>-->
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <!--<version>5.1.44</version>-->
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <!--<version>4.12</version>-->
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <!--<version>4.3.13.RELEASE</version>-->
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <!--<version>1.5.9.RELEASE</version>-->
            <scope>test</scope>
        </dependency>
    </dependencies>

    <repositories>
        <!-- add the elasticsearch repo -->
        <repository>
            <id>elasticsearch-releases</id>
            <url>https://artifacts.elastic.co/maven</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
        </plugins>
    </build>


</project>

上面的程式碼實現了利用Spring IO Platform的Brussels-SR6版本來實現。

1.,不在需要org.springframework.boot對應的parent,在上面已經註釋掉

2,對於絕大多數依賴不需要版本,在上面已經註釋掉的版本號就是Brussels-SR6版本可以自動管理的。

3,在上面僅僅org.elasticsearch和org.elasticsearch.client沒有相應的依賴管理,所以需要自行新增版本號

4,在上面的Brussels-SR6版本所對應的的依賴管理地址為:https://docs.spring.io/platform/docs/Brussels-SR6/reference/htmlsingle/ 在裡面可以查詢到所有管理的包以及版本。這裡對應的是springboot 1.5.9.RELEASE

 

相關文章