Zip 文件未在 mule 中删除
Zip file not deleted in mule
我正在使用 mule 中的文件入站连接器读取 zip 文件。该文件应该被自动删除,因为自动删除是正确的。但事实并非如此。
我的流量是
<file:connector name="File" writeToDirectory="D:\FileProcessed\ringmoved\" readFromDirectory="D:\FileProcessed\" autoDelete="true" streaming="true" validateConnections="true" doc:name="File"/>
<flow name="filFlow">
<file:inbound-endpoint path="D:\FileProcessed\" moveToDirectory="D:\FileProcessed\moved\" connector-ref="File" responseTimeout="10000" doc:name="File"/>
<logger message="hi" level="INFO" doc:name="Logger"/>
</flow>
这是因为您没有使用该文件。尝试添加转换器,例如
<object-to-string-transformer />
在文件端点之后。
我正在使用 mule 中的文件入站连接器读取 zip 文件。该文件应该被自动删除,因为自动删除是正确的。但事实并非如此。 我的流量是
<file:connector name="File" writeToDirectory="D:\FileProcessed\ringmoved\" readFromDirectory="D:\FileProcessed\" autoDelete="true" streaming="true" validateConnections="true" doc:name="File"/>
<flow name="filFlow">
<file:inbound-endpoint path="D:\FileProcessed\" moveToDirectory="D:\FileProcessed\moved\" connector-ref="File" responseTimeout="10000" doc:name="File"/>
<logger message="hi" level="INFO" doc:name="Logger"/>
</flow>
这是因为您没有使用该文件。尝试添加转换器,例如
<object-to-string-transformer />
在文件端点之后。