Spring Cloud Config 1.4.4 已发布,官网已显示该版本为 GA 版本,但未找到具体的更新内容,了解更新细节可先查阅 commits 记录。
Spring Cloud Config 为分布式系统中的外部化配置提供服务器和客户端的支持。
MAVEN:
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-config</artifactId>
            <version>1.4.4.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
</dependencies> 
 下载地址: