我是Apache Camel的新手。我有下面的XML,我从一个宁静的api消费。我已经使用JaxB为它生成了四个对象。即使用apache camel的ConsumerList.java,Consumer.java,Address.java。
<consumer_list>
<consumer>
<name>John</name>
<address>
<street>13 B</street>
<city>Mumbai</city>
</address>
</consumer>
<consumer>
<name>Paul</name>
<address>
<street>82 A</street>
<city>Delhi</city>
</address>
</consumer>
</consumer_list>
现在我的要求是将这4个对象保存到DB。以下是我从camel-context.xml的路线:
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="org.postgresql.Driver"/>
<property name="url" value="jdbc:postgresql://localhost:5432/firstdb"/>
<property name="username" value="postgres"/>
<property name="password" value="xyz"/>
</bean>
<!-- configure the Camel SQL component to use the JDBC data source -->
<bean id="sql" class="org.apache.camel.component.sql.SqlComponent">
<property name="dataSource" ref="dataSource"/>
</bean>
<camelContext xmlns="http://camel.apache.org/schema/spring">
<route id="generateOrder-route">
<from uri="timer://foo?fixedRate=true&period=60000"/>
<setHeader headerName="Exchange.HTTP_QUERY">
<constant>dept=7&name=Johnson&offset=0&limit=200</constant>
</setHeader>
<to uri="http://example.com/ibp/api/v3/business_partners/search"/>
<unmarshal>
<jaxb prettyPrint="true" contextPath="target.jaxb.beans"/>
</unmarshal>
<to ???"/>
</route>
</camelContext>
我已经解组了那些对象,但我不知道如何将它插入数据库。
答案 0 :(得分:0)
使用普通的插入/更新查询,使用apache camel将数据保存到数据库。
将以下bean添加到 SpringConfig.xml 文件
<!-- JDBC data source bean-->
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver" />
<property name="url"
value="YOUR_CONNECTION_STRING" />
<property name="username" value="YOUR_USERNAME" />
<property name="password" value="YOUR_PASSWORD" />
</bean>
<!-- configure the Camel SQL component to use the JDBC data source -->
<bean id="sql" class="org.apache.camel.component.sql.SqlComponent">
<property name="dataSource" ref="dataSource" />
</bean>
根据插入查询中提到的名称将您已解组的值设置为散列映射,并将其设置为 MessageProcessor 中的 exchange.getOut()。setBody 类。
然后在 CamelRouter.java 中使用它,将其传递给转换主体
此 .transform()。body()会将这些HashMap值设置为您的查询参数。
from("direct:yourHandleName").to("bean:messsageProcessor?method=setMessageInHashMap")
.transform().body()
.to("sql:{{----YOUR QUERY HERE----}}")
.log("INFORMATION SUCCESSFULLY INSERTED IN DB").end();
EG。
如果查询包含:insert into sample_table values (:#sample_val1)
地图应包含:
hashMapObj.put("sample_val1","<<<YOUR_VALUE>>>");
exchange.getOut().setBody(hashMapObj);
在地图
中设置 sample_val1 的值注意:查询应包含#应该从HashMap替换的值