我想我需要这样的事情:http://camel.apache.org/cxf-tomcat-example.html
我有一个带有jax-ws注释的web服务类,我想使用这个类来处理请求并产生响应,而不是自定义处理器。
这样的事情:from(cxf ws endpoit).to(my webservice implementation)
这可能吗?我可以将消息路由到正确的java方法吗?
这与cxf
和jax-ws
完全相同,但我也想使用骆驼。
我想使用代码优先方法(生成WSDL)。
答案 0 :(得分:0)
我可以将消息路由到正确的java方法吗?
如果您指的是手动创建的bean的特定方法,那么是。
例如:
创建自定义bean:
public class CustomProcessor {
public void processSomething(Exchange exchange) {
Something smth = exchange.getIn().getBody(Something.class); //Your message's body
}
}
使用Spring
创建类似这样的驼峰配置:
<bean id="processor" class="your.custom.CustomProcessor"/>
<camel:camelContext trace="true" id="camelContext" >
<camel:route id="camelRoute">
<camel:from uri="cxf:bean:yourWebServiceListenerEndpoint?dataFormat=POJO&synchronous=true" />
<camel:choice>
<camel:when>
<camel:simple>${headers.operationName} == 'DoSomething'</camel:simple>
<camel:bean ref="processor" method="processSomething"/>
</camel:when>
</camel:choice>
<camel:to uri="cxf:bean:yourWebServiceTargetEndpoint"/>
</camel:route>
</camel:camelContext>
根据操作名称,camel会将消息路由到相应的处理器。无论如何,您都可以在Camel中路由您的邮件。你只需要考虑如何。从你的问题来看,这是我能给予的。如果您将其更新为更具体,也许我可以提供更多帮助。
另见: