第 78 章 CXF-RS 组件
可作为 Camel 版本 2.0 提供
cxfrs: 组件提供与 Apache CXF 集成,以连接到 CXF 上托管的 JAX-RS 1.1 和 2.0 服务。
在将 CXF 用作消费者时,CXF Bean 组件 允许您确定如何将消息有效负载从其处理中接收为 RESTful 或 SOAP Web 服务。这很可能是因为使用多种传输方式使用 Web 服务。bean 组件的配置也更加简单,并提供使用 Camel 和 CXF 实施 Web 服务的最快方法。
Maven 用户需要在这些组件的 pom.xml 中添加以下依赖项:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
78.1. URI 格式
cxfrs://address?options
其中 address 代表 CXF 端点的地址
cxfrs:bean:rsEndpoint
其中 rsEndpoint 代表 spring bean 的名称,它呈现 CXFRS 客户端或服务器
对于以上任意样式,您可以在 URI 中附加选项,如下所示:
cxfrs:bean:cxfEndpoint?resourceClasses=org.apache.camel.rs.Example