【发布时间】:2020-08-30 09:40:44
【问题描述】:
按照Bootiful GCP: Integration with Google Cloud Pub/Sub (4/8) 的这个示例,我试图构建一个流程,从 Google Pubsub 订阅中读取数据并写入另一个主题。
在DEBUG 模式下启动我的应用程序后,我可以看到消息是从Google PubSub 到达的,但因此它们没有被“消耗”
o.s.i.dispatcher.BroadcastingDispatcher : 没有订阅者,默认行为是忽略
非常感谢您对此的任何帮助。
以下是我的主要代码的样子-
public class PubsubRouteBuilderService {
private final PubSubTemplate pubSubTemplate; // injected via Spring
public PubsubRouteBuilderService(PubSubTemplate pubSubTemplate) {
this.pubSubTemplate = pubSubTemplate;
}
public synchronized boolean buildRoute(PubsubRouteModel pubsubRouteModel) {
log.info("Building route for: {}", pubsubRouteModel);
buildPubsubRoute(pubsubRouteModel);
// some unrelated logic
return true;
}
private void buildPubsubRoute(PubsubRouteModel pubsubRouteModel) {
final StandardIntegrationFlow standardIntegrationFlow = IntegrationFlows.from(
RouteBuilderFactory
.messageChannelAdapter(
RouteBuilderFactory.getMessageChannel(),
pubSubTemplate,
pubsubRouteModel.getFromSub()))
.handle(
message -> {
log.info("consumed new message: [" + message.getPayload() + "]");
AckReplyConsumer consumer = message.getHeaders()
.get(GcpPubSubHeaders.ORIGINAL_MESSAGE, AckReplyConsumer.class);
consumer.ack();
})
.get();
standardIntegrationFlow.start();
}
}
下面是RouteBuilderFactory的其他方法-
public static MessageChannel getMessageChannel() {
return MessageChannels.publishSubscribe().get();
}
public static PubSubInboundChannelAdapter messageChannelAdapter(MessageChannel inputChannel, PubSubTemplate pubSubTemplate, String channelName) {
PubSubInboundChannelAdapter adapter = new PubSubInboundChannelAdapter(pubSubTemplate, channelName);
adapter.setOutputChannel(inputChannel);
adapter.setAckMode(AckMode.MANUAL);
return adapter;
}
【问题讨论】:
标签: java-8 spring-integration spring-integration-dsl spring-cloud-gcp