假设下面的代码作为我的实现
<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的数据类型?这意味着我需要生成对象列表并使用相同的对象。