Camel-MongoDb

来源:互联网 发布:淘宝全球购官网 编辑:程序博客网 时间:2024/06/06 00:53
<?xml version="1.0" encoding="UTF-8"?>                                          <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"                           xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0                                      http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsdhttp://www.springframework.org/schema/beans">       <bean id="mydb" class="com.mongodb.Mongo">    <argument>    <bean class="com.mongodb.MongoURI">             <argument index="0" value="mongodb://admin:admin@localhost:27017/mydb" />         </bean>    </argument></bean>                <camelContext xmlns="http://camel.apache.org/schema/blueprint">        <route>      <from uri="file:activemq/input"/>       <log message="This is my mongodb ${body}" /><to uri="mongodb:mydb?database=mydb&collection=user&operation=insert" /><log message="This is my mongodb end ${body}" />     </route> </camelContext>                                                                 </blueprint>  


项目中用到Camel-MongoDB,以下是同事研究的一个Demo: