Spring Cloud Bus 2.0.0 发布,使用新的 actuator 框架

Spring Cloud Bus 2.0.0 已发布,更新内容包括:

  • Actuator endpoints were updated to use the new actuator framework.

Spring Cloud Bus 将分布式系统的节点与轻量级消息代理链接。

下载地址:

Maven 地址:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-bus-parent</artifactId>
            <version>2.0.0.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-bus-amqp</artifactId>
    </dependency>
</dependencies>

猜你喜欢

转载自www.oschina.net/news/97222/spring-cloud-bus-2-released