使用RabbitMQ来进行微服务的监管

返回目录

https://blog.csdn.net/BW_Bear/article/details/88746646

源码位置

微服务注册管理:

https://github.com/zhaowei-zhang/CloudTest/tree/master/使用Hystrix实现容错/microservice-discovery-eureka

生产者:

https://github.com/zhaowei-zhang/CloudTest/tree/master/使用Hystrix实现容错/microservice-provider-user

消费者:

https://github.com/zhaowei-zhang/CloudTest/tree/master/使用Hystrix实现容错/使用消息中间件收集数据/microservice-consumer-movie-ribbon-hystrix-turbine-mq

Turbine:

https://github.com/zhaowei-zhang/CloudTest/tree/master/使用Hystrix实现容错/使用消息中间件收集数据/hystrix-turbine-mq

1.改造消费者微服务

1.1 添加依赖

		
            org.springframework.cloud
            sprint-cloud-netflix-hystrix-stream
        

        
        
            org.springframework.cloud
            sprint-cloud-starter-stream-rabbit
        

1.2 修改配置文件

添加

spring:
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest

2.改造Turbine

1.1 添加依赖

		
            org.springframework.cloud
            sprint-cloud-netflix-hystrix-stream
        

        
        
            org.springframework.cloud
            sprint-cloud-starter-stream-rabbit
        

1.2 修改配置文件

添加

spring:
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
    password: guest

同时删除:

turbine:
  app-config: MICROSERVICE-CONSUMER-MOVIE-1,MICROSERVICE-CONSUMER-MOVIE-2
  cluster-name-expression: "'default'"

这样就都OK了,可以测试了

测试

1.启动eureka、生产者、消费者

2.启动Turbine

3.访问消费者服务

使用RabbitMQ来进行微服务的监管_第1张图片

4.访问Turbine

使用RabbitMQ来进行微服务的监管_第2张图片

返回目录

https://blog.csdn.net/BW_Bear/article/details/88746646

你可能感兴趣的:(SpringCloud)