下面是一个完整的Spring Cloud Stream应用程序示例,包括消息处理器和消息发布器:
代码语言:javascript复制@SpringBootApplication
@EnableBinding(MyProcessor.class)
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
public interface MyProcessor {
@Input("myInput")
SubscribableChannel input();
@Output("myOutput")
MessageChannel output();
}
@Autowired
private MyProcessor processor;
public void sendMessage(String payload) {
processor.output().send(MessageBuilder.withPayload(payload).build());
}
@StreamListener("myInput")
@SendTo("myOutput")
public Message<?> handleMessage(Message<?> message) {
// 处理消息并返回结果
return MessageBuilder.withPayload("Hello, " message.getPayload()).build();
}
}
在上面的示例中,定义了一个名为MyProcessor的声明式接口,其中包含一个名为myInput的输入通道和一个名为myOutput的输出通道。使用@Autowired注解注入MyProcessor接口,并使用sendMessage()方法向输出通道发送消息。使用@StreamListener注解处理从输入通道接收到的消息,并使用@SendTo注解将处理结果发送到输出通道。