Camel + marklogic不使用Marklogic Content Pump
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Camel + marklogic不使用Marklogic Content Pump相关的知识,希望对你有一定的参考价值。
我正在尝试从文件系统中获取JSON文件,并尝试将文件插入MarkLogic数据库。
<route id="file_upload">
<!-- incoming requests from the file is routed -->
<from uri="file:/E:/camel/input"/>
<to uri="http://localhost:8005/v1/documents?uri/patents/test.json"/>
</route>
用户名和密码为:admin / admin,用于在8005上运行的MarkLogic REST实例
答案
在https://github.com/rjrudin/ml-camel-client上有Camel / MarkLogic集成的例子。那些只是使用mlcp(作为嵌入式库)和XCC - 我现在将添加一个REST API示例并回复。
https://github.com/rjrudin/marklogic-camel-demo显示了进一步的集成,虽然配置是用Java而不是XML(我发现Java更容易在Camel中使用) - 请注意HTTP头和查询字符串如何作为Camel头传入,而不是作为URI的一部分传递 - https://github.com/rjrudin/marklogic-camel-demo/blob/master/src/main/java/org/example/util/RunCamel.java#L76。这也记录在Camel http4页面中 - http://camel.apache.org/http4.html
以上是关于Camel + marklogic不使用Marklogic Content Pump的主要内容,如果未能解决你的问题,请参考以下文章
如何检查传递的对象是否是MarkLogic中的有效JSON?