使用Spring Cloud Bus刷新配置更改

时间:2019-01-29 09:06:49

标签: java spring-boot apache-kafka spring-boot-actuator

我正在使用Spring Cloud配置服务器作为集中保存属性文件的集中位置来构建应用程序。而且我有多个客户端应用程序从配置服务器获取配置数据。

但是我没有使用手动刷新每个客户端应用程序以在提交后拉动属性文件中最新更改的方法,而是使用Spring Cloud Bus和Kafka作为消息代理,以便所有更改都广播到客户端应用程序。以下是pom文件和属性文件。

ConfigServer:  pom

       <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-config-server</artifactId>
        </dependency>

application.properties:

  server.port = 8980

bootstrap.properties:

   spring.cloud.bus.enabled=true
   spring.cloud.config.server.git.uri= "some path"

配置客户端:   pom

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-config</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-bus-kafka</artifactId>
        </dependency>

application.properties:

server.port=8982

spring.cloud.bus.refresh.enabled: true
spring.cloud.bus.env.enabled: true
endpoints.spring.cloud.bus.refresh.enabled: true
endpoints.spring.cloud.bus.env.enabled: true

spring.cloud.stream.kafka.binder.autoAddPartitions=true
spring.cloud.stream.kafka.binder.zkNodes=localhost:2181
spring.cloud.stream.kafka.binder.brokers=localhost:9892

bootstrap.properties:

    spring.application.name=department-service
    spring.cloud.config.uri=http://localhost:8980
    management.security.enabled=false

但是在对本地git仓库文件进行更改之后并提交后 当我尝试使用“ http://localhost:8982/actuator/bus-refresh”端点提取最新更改时,出现以下错误:

{
"timestamp": "2019-01-29T08:49:21.569+0000",
"status": 404,
"error": "Not Found",
"message": "No message available",
"path": "/actuator/bus-refresh"

}

2 个答案:

答案 0 :(得分:2)

您需要在配置服务器 application.properties 中包含“management.endpoints.web.exposure.include=bus-refresh”。然后,向此 URL localhost:8012/actuator 发送 GET 请求以查看可用的 LINKS 以刷新配置更改。您将在下面看到 JSON

{
"_links": {
    "self": {
        "href": "http://localhost:8012/actuator",
        "templated": false
    },
    "busrefresh-destinations": {
        "href": "http://localhost:8012/actuator/busrefresh/{*destinations}",
        "templated": true
    },
    "busrefresh": {
        "href": "http://localhost:8012/actuator/busrefresh",
        "templated": false
    }
}

然后你可以发送一个POST到这个URL localhost:8012/actuator/busrefresh

答案 1 :(得分:0)

您需要在配置服务器application.properties中包含“ management.endpoints.web.exposure.include = bus-refresh”,然后点击该网址

http://localhost:8980/actuator/bus-refresh