Spring Cloud2.x用kafka实现消息总线的坑

框架版本

Spring Boot版本:2.0.3
Spring Cloud版本:Finchley
Kafka版本:2.0.0

遇到的问题

我按照博客:史上最简单的SpringCloud教程 | 第八篇: 消息总线(Spring Cloud Bus)(Finchley版本)配置之后,在发送post请求:http://localhost:8881/actuator/bus-refresh 后,报出了404的错误,半天摸不到头绪,不过肯定是配置上出了问题,一定要确保以下几点配置:
1.必须在config-client中pom文件添加以下依赖:


    org.springframework.boot
    spring-boot-starter-actuator


    org.springframework.cloud
    spring-cloud-starter-bus-kafka

2.必须在config-client配置文件中添加以下配置:

management:
  endpoints:
    web:
      exposure:
        include: bus-refresh

3.必须在调用@Value注解类上添加注解:

@RefreshScope 

4.请求刷新的页面由原来1.5.x的localhost:8881/bus/refresh,变成:http://localhost:8881/actuator/bus-refresh,因为Spring boot 2.0的改动较大,/bus/refresh全部整合到actuador里面了。

config-server配置:

1.pom.xml文件:



    4.0.0

    com.gewdata
    config-server
    0.0.1-SNAPSHOT
    jar

    config-server
    Demo project for Spring Boot

    
        com.gewdata
        springCloudConfigDemo
        0.0.1-SNAPSHOT
    

    

        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        

        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.cloud
            spring-cloud-config-server
        
        
            org.springframework.boot
            spring-boot-starter-actuator
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    




2.配置文件application.properties:

spring.application.name=config-server
server.port=8888

# 配置git仓库地址
spring.cloud.config.server.git.uri=http://139.159.143.78:10086/wangjunyao/SpringCloudDemo.git
# 配置仓库路径
spring.cloud.config.server.git.searchPaths=config
# 配置仓库分支
spring.cloud.config.label=master
# 访问git仓库用户名
spring.cloud.config.server.git.username=wangjunyao
# 访问git仓库用户密码
spring.cloud.config.server.git.password=12345678
# 服务注册地址
eureka.client.serviceUrl.defaultZone=http://localhost:8889/eureka/

config-client配置

1.pom.xml文件:



    4.0.0

    com.gewdata
    config-client
    0.0.1-SNAPSHOT
    jar

    config-client
    Demo project for Spring Boot

    
        com.gewdata
        springCloudConfigDemo
        0.0.1-SNAPSHOT
    

    
        
            org.springframework.cloud
            spring-cloud-starter-bus-kafka
        

        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        

        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.cloud
            spring-cloud-starter-config
        
        
            org.springframework.boot
            spring-boot-starter-actuator
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


2.配置文件bootstrap.properties:

# 这里的配置是和git上文件名相对应的
spring.application.name=wjy-client
# 指明分支
spring.cloud.config.label=master
spring.cloud.config.profile=dev
# 指明配置服务中心网址
#spring.cloud.config.uri= http://localhost:8888/
server.port=8881

# 高可用
# 指定服务注册地址
eureka.client.serviceUrl.defaultZone=http://localhost:8889/eureka/
# 是从配置中心读取文件
spring.cloud.config.discovery.enabled=true
# 配置中心的servield,即是服务名
spring.cloud.config.discovery.serviceId=config-server

#消息总线配置
spring.cloud.bus.enabled=true
spring.cloud.bus.trace.enabled=true
management.endpoints.web.exposure.include=bus-refresh
#Kafka的服务端列表,默认localhost
spring.cloud.stream.kafka.binder.brokers=localhsot:9092
#Kafka服务端的默认端口,当brokers属性中没有配置端口信息时,就会使用这个默认端口,默认9092
spring.cloud.stream.kafka.binder.defaultBrokerPort=9092
#ZooKeeper节点的默认端口,当zkNodes属性中没有配置端口信息时,就会使用这个默认端口,默认2181
spring.cloud.stream.kafka.binder.defaultZkPort=2181

3.在调用到@Value方法的类上添加注解@RefreshScope:

@SpringBootApplication
@RestController
@RefreshScope // 刷新配置
public class ConfigClientApplication {

    public static void main(String[] args) {
        SpringApplication.run(ConfigClientApplication.class, args);
    }

    @Value("${msg}")
    String msg;

    @RequestMapping(value = "/hi")
    public String hi(){
        return msg;
    }
}

你可能感兴趣的:(Spring,Cloud)