1
我想這個例子中的ActiveMQ消息被轉換在名爲CustInfo使用推土機組件的Java對象中學習駱駝上保險絲 - :從ActiveMQ的爲Java Bean
<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&targetModel=org.blogdemo.homeloan.model.CustInfo&unmarshalId=homeloancust&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類(沒有推土機)。 試用版本:
<bean id="CustInfo" class="homeloancust.CustInfo"/>
. . .
<to ref="CustInfo" id="to3"/>
沒有成功!任何幫助?
感謝您的幫助! – Carla
這是我的榮幸。 –