Apache camel Can camel码头选项';分块';用于<;至>;标签?

Apache camel Can camel码头选项';分块';用于<;至>;标签?,apache-camel,jbossfuse,Apache Camel,Jbossfuse,我们可以在如下所示的标记中使用camel jetty组件提供的选项“chunked”吗 <route trace="true" id="SimpleProxy"> <from uri="jetty:http://0.0.0.0:8299/test2?matchOnUriPrefix=true"/> <to uri="jetty:http://localhost:9001/rest?chunked=true"/> </route>

我们可以在如下所示的标记中使用camel jetty组件提供的选项“chunked”吗

<route trace="true" id="SimpleProxy">
    <from uri="jetty:http://0.0.0.0:8299/test2?matchOnUriPrefix=true"/>
    <to uri="jetty:http://localhost:9001/rest?chunked=true"/>
</route>

或者它只能用于标记中的使用者端点

我已经有一个服务器在侦听标记中指定的uri


文档中没有说明分块只能用于消费者端点。

是否尝试将其添加到to标记中?是的。我试过了,但没用。我认为它只能在消费者端点上使用,就像在标记中一样,因为我在中指定的uri与标记中指定的uri不同,它不是jetty管理的端点。它用于生产者端点。