作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这部分难题是我的噩梦,我已经在 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/
我是一名优秀的程序员,十分优秀!