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

Spring IO Platform學習總結

1:Spring IO Platform

Spring IO Plat是一個附帶包,不會編譯到專案中,它只是將核心Spring API框架內聚整合到一個現代應用程式的平臺中。它提供了已經測試完畢能很好協同工作的許多專案的Spring組合版本以及它們的依賴項。你在引入新的Spring IO Platform時不用帶版本號的

2:Maven使用Spring IO Platform

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>io.spring.platform</groupId>
                <artifactId>platform-bom</artifactId>
                <version>1.1.2.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
       <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <!--pom形式引入,需要加入configuration的executable--!>
                <configuration>
                    <executable>true</executable>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
  1. 使用父依賴的方式引入Spring IO Platform
     <parent>
        <!--
            io.spring.platform bom Brussels-SR7
            springframework version 4.3.13.RELEASE
            spring boot version 1.5.9.RELEASE
        -->
        <groupId>io.spring.platform</groupId>
        <artifactId>platform-bom</artifactId>
        <version>Brussels-SR6</version>
        <relativePath/>
    </parent>
         <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <!--parent形式引入,不需要加入configuration的executable--!>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

3:覆蓋Spring IO Platform的依賴版本號

<properties>
  <foo.version>1.2.0.RELEASE</foo.version>
</properties>

在使用Spring IO Platform專案的依賴管理時,應根據專案的實際執行環境來合理選擇版本號,除非必須,否則不建議修改版本資訊。在修改依賴包的版本資訊時,可通過IDE點選座標來檢視依賴包對應的屬性名。

4:Spring Boot dependency和 Spring Framework

            <!--
                spring boot pom
                spring boot version 1.5.2.RELEASE
                spring boot 專案的整合
            -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring-boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <!--
                spring framework bom
                spring framework version 4.3.7.RELEASE
                spring framework 整合
            -->
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-framework-bom</artifactId>
                <version>${spring-framework-bom.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>

5:總結

Spring IO Platform專案的本質就是一個pom檔案,它記錄了Spring專案和其它第三方庫對應的版本資訊。由於Spring IO Platform專案幫助我們做了大量的整合和測試工作,使得我們可以輕鬆使用