使用Apache Camel如何解组通过CXF端点传入的反序列化对象?

我有一个非常简单的骆驼路线.它以作为Web服务公开的CXF端点开始.
然后我想将它转换为xml并在bean上调用一个方法.

目前我正在获取Web服务调用后的CXF特定对象.
如何将序列化对象从CXF MessageList中取出并继续使用?

我的路线:

<camel:route>
   <camel:from uri="cxf:bean:helloEndpoint" />
   <camel:marshal ref="xstream-utf8" />
   <camel:to uri="bean:hello?method=hello"/>
</camel:route>

XML序列化消息:

<?xml version='1.0' encoding='UTF-8'?>
<org.apache.cxf.message.MessageContentsList serialization="custom">
   <unserializable-parents />
   <list>
      <default>
         <size>1</size>
      </default>
      <int>6</int>
      <com.whatever.Person>
         <firstName>Joe</firstName>
         <middleName></middleName>
         <lastName>Buddah</lastName>
         <dateOfBirth>2010-04-13 12:09:00.137 CDT</dateOfBirth>
      </com.whatever.Person>
   </list>
</org.apache.cxf.message.MessageContentsList>

我希望XML更像这样:

<com.whatever.Person>
   <firstName>Joe</firstName>
   <middleName></middleName>
   <lastName>Buddah</lastName>
   <dateOfBirth>2010-04-13 12:09:00.137 CDT</dateOfBirth>
</com.whatever.Person>

解决方法:

我找到了.我只是不得不使用它.

<camel:convertBodyTo type="com.whatever.Person"/>
上一篇:Java – Apache CXF将支持基于JAX-RPC的Web服务(SOAP)


下一篇:使用Spring在CXF中进行多个resouceBean配置