Spring Cloud Stream
2021-06-12 04:04
标签:现在 简单的 自定义消息 uil aml static factory nal 版本 Spring Cloud Stream用来构建消息驱动的微服务 创建一个Spring Cloud Stream项目,添加三个依赖,web,rabbitmq,cloud stream: 项目创建成功后,添加 RabbitMQ 的基本配置信息: 接下来,创建一个简单的消息接收器: 启动 stream 项目,然后,在 rabbitmq 后台管理页面去发送一条消息。 首先创建一个名为 MyChannel 的接口 再定义一个 HelloController 进行测试: 同时,为了让消息输入输出通道对接上(因为现在这两个的通道名称不一样),再增加一点额外配置。 Spring Cloud Stream 标签:现在 简单的 自定义消息 uil aml static factory nal 版本 原文地址:https://www.cnblogs.com/qiuwenli/p/13515034.html概念
Spring Cloud Stream中,提供了一个微服务和消息中间件之间的一个粘合剂,这个粘合剂叫做Binder,Binder负责与消息中间件进行交互。而我们开发者则通过inputs或者outputs这样的消息通道与Binder进行交互HelloWorld
spring.rabbitmq.host=127.0.0.1
spring.rabbitmq.port=5672
spring.rabbitmq.username=guest
spring.rabbitmq.password=guest
@EnableBinding(Sink.class)
public class MsgReceiver {
public final static Logger logger = LoggerFactory.getLogger(MsgReceiver.class);
@StreamListener(Sink.INPUT)
public void receive(Object payload) {
logger.info("Received:" + payload);
}
}
自定义消息通道
public interface MyChannel {
String INPUT = "javaboy-input";
String OUTPUT = "javaboy-output";
@Output(OUTPUT)
MessageChannel output();
@Input(INPUT)
MessageChannel input();
}
以相同),这样的话,为了能够正常收发消息,需要我们在 application.properties 中做一些额外
配置。
接下来,自定义一个消息接收器,用来接收自己的消息通道里的消息:@EnableBinding(MyChannel.class)
public class MsgReceiver2 {
public final static Logger logger =
LoggerFactory.getLogger(MsgReceiver2.class);
@StreamListener(MyChannel.INPUT)
public void receive(Object payload) {
logger.info("received2:" + payload);
}
}
@RestController
public class HelloController {
@Autowired
MyChannel myChannel;
@GetMapping("/hello")
public void hello(){
myChannel.output().send(MessageBuilder.withPayload("hello spring cloud stream!").build());
}
}
spring.cloud.stream.bindings.javaboy-input.destination=javaboy-topic
spring.cloud.stream.bindings.javaboy-output.destination=javaboy-topic
下一篇:Java锁的认识
文章标题:Spring Cloud Stream
文章链接:http://soscw.com/index.php/essay/93803.html