2

ミュール アプリで次のコンポーネント バインディングを構成しました。

<jersey:resources doc:name="REST">
        <component>
            <spring-object bean="activityController"/>
            <binding interface="edu.ucdavis.edustream.esb.activity.service.EduStreamService" method="putActivity">
                <vm:outbound-endpoint exchange-pattern="request-response"
                        path="putActivity" />
            </binding>
        </component>
    </jersey:resources> 

エラーなしでビルドおよび実行されますが、mule xml には次のエラーがリストされます。

Element: Binding Properties is not allowed to be child of element Java
Element: VM is not allowed to be child of element Binding Properties

私の設定は、次のブログとそれに付随する github src にあるものと非常によく似ています。

http://blogs.mulesoft.org/mule-component-bindings/ https://github.com/mulesoft/blog/tree/master/StockStats

ミュール アプリの xml スキーマの検証が失敗する理由はありますか?

4

1 に答える 1

2

これは MuleStudio の検証自体の問題であり、バインディングのサポートがまだ不足しています。修正されるまで、当面は無視してかまいません。

于 2013-06-21T14:54:07.490 に答える