使用Spring Integration Gateway将消息发送到不同的主题

时间:2019-02-19 12:28:19

标签: spring-integration spring-integration-mqtt

我正在尝试使用Spring集成将mqtt消息发送给代理,并且正在尝试使用网关接口。

 @Bean
public MqttPahoClientFactory mqttClientFactory() {
    DefaultMqttPahoClientFactory factory = new DefaultMqttPahoClientFactory();
    //set the factory details
    return factory:
}

@Bean
@ServiceActivator(inputChannel = "mqttOutboundChannel")
public MessageHandler mqttOutbound() {
    MqttPahoMessageHandler messageHandler =
            new MqttPahoMessageHandler("randomString", mqttClientFactory());
    //set handler details
    messageHandler.setDefaultTopic(topic);
    return messageHandler;
}

@Bean
public MessageChannel mqttOutboundChannel() {
    return new DirectChannel();
}
@MessagingGateway(defaultRequestChannel = "mqttOutboundChannel")
private interface MyGateway {
    void sendToMqtt(String data);
}

我的问题是:如果我想使用网关处理程序将消息发送到不同的主题,我该怎么做而不必为每个主题创建适配器?

谢谢。

希望我清楚地提出了我的问题,并且代码格式正确。

1 个答案:

答案 0 :(得分:1)

您需要在邮件标题中设置目标主题。

这里是做到这一点的一种方法...

void sendToMqtt(String data, @Header(MqttHeaders.TOPIC) String topic);

网关代理将邮件与标头组合在一起,然后由出站适配器使用。