61.5. Samples
例如,您可以使用如下内容:
from("activemq:My.Queue"). to("chunk:template");
使用 Chunk 模板来制定对 InOut 消息交换的消息做出响应(其中有一个 JMSReplyTo
标头)。
如果要使用 InOnly 并消耗信息并将其发送到您可以使用的其他目的地:
from("activemq:My.Queue"). to("chunk:template"). to("activemq:Another.Queue");
可以指定组件应该通过标头动态使用的模板,例如:
from("direct:in"). setHeader(ChunkConstants.CHUNK_RESOURCE_URI).constant("template"). to("chunk:dummy");
使用 Chunk 组件选项的示例:
from("direct:in"). to("chunk:file_example?themeFolder=template&themeSubfolder=subfolder&extension=chunk");
在这个示例中,Chunk 组件会在文件夹 template/subfolder 中查找 file_example.chunk 文件。