我有一个文件夹说“我的文件”,我有很多文件。现在我需要通过 REST over HTTP 上传这些文件。方法是什么?
我尝试了以下但它是错误的
<flow name="testFlow1" doc:name="testFlow1">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/>
<http:rest-service-component
serviceUrl="http://localhost:8280/rest/xyz"
httpMethod="POST">
</http:rest-service-component>
<http:endpoint host="localhost" port="5430" encoding="UTF-8"
method="POST" connector-ref="fileHttp" path="fileuploader" name="muleFileUploader">
</http:endpoint>
</flow>
请帮忙。由于输入文件夹将有多个文件,我们怎样才能实现呢?
谢谢