我们如何在Spring集成中更改通道数据类型?

时间:2018-09-27 07:00:20

标签: java spring spring-integration channel

假设下面的代码作为我的实现

<int:channel id="channel"/>
    <int:inbound-channel-adapter id="inAdapter" channel="channel" method="produce">
        <bean class="spring.integration.stackoverflow.ioadapter.Application$MessageProducer"/>
        <int:poller fixed-rate="1000"/>
    </int:inbound-channel-adapter>
    <int:outbound-channel-adapter id="outAdapter" channel="channel" method="consume">
        <bean class="spring.integration.stackoverflow.ioadapter.Application$MessageConsumer"/>
    </int:outbound-channel-adapter>

此处默认数据类型为“字符串”。我们如何更改java.util.List的数据类型?这意味着我需要生成对象列表并使用相同的对象。

0 个答案:

没有答案