1

Mule Flowでgroovy スクリプトを実行しようとしています。 バージョンMule Server 3.5.1.EE.を使用し ています。すでにクラスパスに groovy-all.jar を含めています

Groovy スクリプトの内容は単純です

return "demo payload"

実行時に、例外スタック トレースを下回ります

java.lang.NullPointerException
    at org.mule.component.AbstractComponent.invokeInternal(AbstractComponent.java:108)
    at org.mule.component.AbstractComponent.process(AbstractComponent.java:152)
    at org.mule.execution.ExceptionToMessagingExceptionExecutionInterceptor.execute(ExceptionToMessagingExceptionExecutionInterceptor.java:24)
    at org.mule.execution.MessageProcessorNotificationExecutionInterceptor.execute(MessageProcessorNotificationExecutionInterceptor.java:58)

詳細を投稿する必要がある場合はお知らせください。
どんな助けでも大歓迎です。

4

2 に答える 2

1

これが正しいかどうかはわかりませんが、Mule フローでの Groovy の適切な使用法は次のようになります。

<?xml version="1.0" encoding="UTF-8"?>
<mule ...>
    <flow name="lab1Flow1" doc:name="lab1Flow1">
        <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" doc:name="HTTP"/>
        <scripting:component doc:name="Groovy">
            <scripting:script engine="Groovy"><![CDATA["demo payload"]]></scripting:script>
        </scripting:component>
    </flow>
</mule>

上記のフローを curl で試すと、(予想どおり) 応答するはずです。

$ curl -i http://localhost:8081
HTTP/1.1 200 OK
Date: Sun, 07 Dec 2014 16:52:48 +0000
Server: Mule EE Core Extensions/3.5.2
X-MULE_SESSION: ...
X-MULE_ENCODING: UTF-8
Content-Type: text/plain
Content-Length: 12
Connection: close

demo payload
于 2014-12-07T17:09:09.013 に答える
0
<?xml version="1.0" encoding="UTF-8"?>

<mule xmlns:scripting="http://www.mulesoft.org/schema/mule/scripting" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
    xmlns:spring="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/scripting http://www.mulesoft.org/schema/mule/scripting/current/mule-scripting.xsd">
    <http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
    <flow name="groovydemoFlow">
        <http:listener config-ref="HTTP_Listener_Configuration" path="/" doc:name="HTTP"/>
        <scripting:component doc:name="Groovy">
            <scripting:script engine="Groovy"><![CDATA[println('demo payload');]]></scripting:script>
        </scripting:component>
    </flow>
</mule>

Please  try this
于 2016-06-09T10:20:41.803 に答える