从ActiveMQ到Java Bean

时间:2016-04-14 17:33:01

标签: apache-camel jbossfuse

我试图在Fuse上学习Camel-在这个例子中,使用Dozer组件在名为CustInfo的Java对象中转换ActiveMQ消息:

<camelContext id="context-43faded0-825e-454b-8037-c72122aa0418" xmlns="http://camel.apache.org/schema/blueprint">
  <propertyPlaceholder location="classpath:sql.properties" id="properties"/>
  <endpoint uri="dozer:toCustInfo?sourceModel=homeloancust.CustInfo&amp;targetModel=org.blogdemo.homeloan.model.CustInfo&amp;unmarshalId=homeloancust&amp;mappingFile=toCustInfo.xml" id="toCustInfo"/>
  <dataFormats>
    <jaxb contextPath="homeloancust" id="homeloancust"/>
  </dataFormats>
  <route id="CustomerEvaluation">
      <from uri="activemq:queue:customer"/>
      <to ref="CustInfo" id="to3"/>
       . . . .
  </route>
</camelContext>

我的问题是,如果我不需要在Java对象中进行转换,我可以直接将消息转换为Java类(不使用Dozer)。 试过:

<bean id="CustInfo" class="homeloancust.CustInfo"/>
. . .
<to ref="CustInfo" id="to3"/>

没有成功!有什么帮助吗?

1 个答案:

答案 0 :(得分:1)

假设传入消息有一个契约(如果它遵循良好的契约优先方法,它应该是这样),那么您可以使用JAXB简单地将有效负载解组为Java对象。如果它没有契约,您仍然可以使用JAXB注释注释Java类并解组它:

<unmarshal>
  <jaxb prettyPrint="true" contextPath="org.apache.camel.example"/>
</unmarshal>

http://camel.apache.org/jaxb.html