gpt4 book ai didi

apache-camel - Camel-拆分列表并处理每个java对象-XML配置

转载 作者:行者123 更新时间:2023-12-04 17:22:39 24 4
gpt4 key购买 nike

我无法拆分列表中的 Java 对象。如何将 Body 标记化/转换为单个 Java 对象?

    <route id="cleanupMigratedFiles" autoStartup="true">

<from uri="timer://kickoff?period=5s" />
<bean ref="migrationProcessor" method="getCacheDeleteObjects" /> <!-- this gives me a List-of-CacheMigr -->
<log message="\n\t########\n\tCleanupMigrated file: ${body}" />
<pipeline>
<split>
<tokenize /> <!-- How to tokenize a List-of-CacheMigr -->
<convertBodyTo type="era.oddw.entity.CacheMigr" /> <!-- Do I need this? -->
<log message="\n\t########\n\tCleanupMigrated file: ${body}" />
</split>
</pipeline>
</route>

最佳答案

经过更多阅读后找到了答案..以下标记正确标记列表:${body}

感谢 Camel 人。

        <split streaming="true">
<simple>${body}</simple>
<convertBodyTo type="era.oddw.entity.CacheMigr" />
<log message="\n\t########\n\tCleanupMigrated file each: ${body}" />
</split>

关于apache-camel - Camel-拆分列表<MyObj>并处理每个java对象-XML配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18365209/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com