我在我的 mule 应用程序中配置了以下组件绑定。
<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 模式验证失败?