繁体   English   中英

如何根据传入文件名在 Mule 中路由

[英]How to route in Mule based on Incomming File Name

我在 mule 中要求根据文件名进行路由......我有一个文件端点,文件将在其中放置,并根据文件名将路由到不同的流......我的流程是:-

<flow name="Db1Flow3" doc:name="Db1Flow3" initialState="started">
    <file:inbound-endpoint responseTimeout="10000" connector-ref="File_Input" doc:name="File"  path="E:\backup\test">
        <file:filename-regex-filter pattern="SoapRequestInsert.xml,SoapRequestUpdate.xml,SoapRequestRetrieve.xml"   caseSensitive="false"/>
    </file:inbound-endpoint>

    <set-property propertyName="QuerySelect" value="${QuerySelect}" doc:name="To_Set_Query_In_Property_File"/>

    <choice doc:name="Choice">
        <when expression="#[message.outboundProperties['QuerySelect'] contains 'insert'] &amp;&amp; #[message.inboundProperties['originalFilename'].contains('SoapRequestInsert.xml')]">
            //Do something ....
        </when>
        <when expression="#[message.outboundProperties['QuerySelect'] contains 'update'] &amp;&amp; #[message.inboundProperties['originalFilename'].contains('SoapRequestUpdate.xml')]">
            //Do something other
        </when>
        <when expression="#[message.outboundProperties['QuerySelect'] contains 'select'] &amp;&amp; #[message.inboundProperties['originalFilename'].contains('SoapRequestRetrieve.xml')]">

            //Do something
        </when>
        <otherwise>
            //Do default            
        </otherwise>
    </choice>
</flow>

现在,每当我在输入文件夹中放置文件时,都会出现以下异常:-

[Error: unbalanced braces]
[Near : {... '] contains 'insert'] && #[message.inboundProperti ....}]
[Line: 1, Column: 60] (org.mule.api.expression.InvalidExpressionException). Message payload is of type: ReceiverFileInputStream
Code   

           : MULE_ERROR--2

请帮助让我知道 MEL 是否正确基于输入文件名路由

尝试这个:

<when expression="#[(message.outboundProperties['QuerySelect']).contains('insert') &amp;&amp; (message.inboundProperties['originalFilename']).contains('SoapRequestInsert.xml')]">

//Do something ....

 </when>

不要使用#[] 两次,最好将它们隐藏在一个#[] 下。 它应该工作。

<choice doc:name="Choice">
    <when expression="#[(message.outboundProperties['QuerySelect'] contains 'insert') &amp;&amp; (message.inboundProperties['originalFilename'].contains('SoapRequestInsert.xml'))]">
        //Do something ....
    </when>
    <when expression="#[(message.outboundProperties['QuerySelect'] contains 'update') &amp;&amp; (message.inboundProperties['originalFilename'].contains('SoapRequestUpdate.xml'))]">
        //Do something other
    </when>
    <when expression="#[(message.outboundProperties['QuerySelect'] contains 'select') &amp;&amp; (message.inboundProperties['originalFilename'].contains('SoapRequestRetrieve.xml'))]">

        //Do something
    </when>
    <otherwise>
        //Do default            
    </otherwise>
</choice>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM