【发布时间】:2016-04-14 23:15:54
【问题描述】:
我的项目中有许多 WSDL(>100) 文件(生成了许多 WS java 接口)。我想对 cxf 端点使用通用配置,而不是在骆驼 xml 配置文件中为每个 ws 配置许多端点。
<cxf:cxfEndpoint id="orderEndpoint"
address="http://localhost:9000/order/"
serviceClass="camelinaction.order.OrderEndpoint"/>
是否有任何其他方式来配置camel cxf端点而无需手动将其添加到每个ws的xml文件中? 是否可以(自动)在生成的界面中使用一些驼峰注解?
【问题讨论】:
标签: apache-camel cxf integration