0

mule 3.3.0 CE では、構成 XML ファイルに次の行を追加します。

<flow name="muleService" doc:name="muleService">
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/>
<choice doc:name="Choice">
    <when expression="payload.get('type') == 'normal'" evaluator="groovy">
        <processor-chain>
            <component class="com.mule.routing.routingClass1" doc:name="Java"/>
        </processor-chain>
    </when>
    <when expression="payload.get('type') == 'priority'" evaluator="groovy">
        <processor-chain>
            <component class="com.mule.routing.routingClass2" doc:name="Java"/>
        </processor-chain>
    </when>
    <otherwise>
        <processor-chain>
            <component class="com.mule.routing.routingClass1" doc:name="DefaultQueue"/>
        </processor-chain>
    </otherwise>        
</choice>

プロジェクトを実行して thisurl を入力すると、localhost:8081/priority または localhost:8081/normal と入力すると、次のエラーが発生します。

    javax.script.ScriptException: groovy.lang.MissingMethodException: No signature of method: java.lang.String.get() is applicable for argument types: (java.lang.String) values: [type]
Possible solutions: getAt(java.lang.String), grep(), next(), next(), getAt(groovy.lang.Range), getAt(groovy.lang.Range) (org.mule.api.MuleRuntimeException). Message payload is of type: String

この問題を解決するにはどうすればよいですか?

4

1 に答える 1

2

問題は式にあります。次の式を試してください。

expression="payload.equalsIgnoreCase('normal')"

また、評価者として現在 Groovy を使用していますが、mule 3.3 以降、MELの使用が強く推奨されています。

于 2013-03-10T15:28:21.187 に答える