gpt4 book ai didi

java - ServiceMix 和 Camel : How do I create routes?

转载 作者:行者123 更新时间:2023-11-30 09:06:37 25 4
gpt4 key购买 nike

这部分难题是我的噩梦,我已经在 2 个不同的 tomcat 实例上部署了 ServiceMix 和 2 个 Java 应用程序:

第一个应用:

http://localhost:8080/textmsgClient

第二个应用:

http://localhost:8181/textmsgServer

现在我的两个应用程序需要通信,尽管我希望通信通过 ServiceMix,这样我就可以做一些日志和所有事情。

我在 ./deploy 目录下创建了一个蓝图 XML 文件,但是我应该在其中放入什么路由?

我不能这样做:

  <route>
<from uri="http://localhost:8080/textmsgClient"/>
<log message="Test log"/>
<to uri="http://localhost:8181/textmsgServer"/>
</route>

那么正确的做法是什么?

顺便说一句,我的 XML 文件如下所示:

<?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.xsd">

<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="file:camel/input"/>
<log message="Moving ${file:name} to the output directory"/>
<to uri="file:camel/output"/>
</route>
</camelContext>

</blueprint>

最佳答案

查看 Camel Components 的列表.不知道您在服务之间发送的数据类型是什么,因此很难推荐使用哪一种。但是,几乎所有您能想到的数据类型都有一个组件,甚至支持创建您自己的数据类型!

编辑一个例子可能是:

<route>
<from uri="direct:textmsgClient"/>
<log message="Test log"/>
<to uri="direct:textmsgServer"/>
</route>

关于java - ServiceMix 和 Camel : How do I create routes?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24361562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com