Java 如何在mule XML配置文件中的http:inbound端点中设置请求超时?

Java 如何在mule XML配置文件中的http:inbound端点中设置请求超时?,java,http,mule,endpoint,Java,Http,Mule,Endpoint,我根据文档()创建了一个具有入站HTTP端点的流: 以及如何在http:inbound端点中设置请求超时 您实际上设置了responseTimeout属性。您的意思是在http:inbound endpoint中设置属性responseTimeout? <flow name="testComponent"> <http:inbound-endpoint name="clientEndpoint" address="http://localhost:8080/foo"

我根据文档()创建了一个具有入站HTTP端点的流:



以及如何在http:inbound端点中设置请求超时

您实际上设置了responseTimeout属性。

您的意思是在
http:inbound endpoint
中设置属性
responseTimeout
<flow name="testComponent">
    <http:inbound-endpoint name="clientEndpoint" address="http://localhost:8080/foo"/>
    <echo-component/>
</flow>