使用 Camel Fuse 在 routeContext 上编辑骆驼路线不起作用

Editing camel routes on routeContext with Camel Fuse not working

我刚刚安装了 Jboss Tools Integration Stack for Eclipse Mars 以便能够以图形方式编辑 Camel 路线。问题是它只加载在

中定义的路由
<camelContext id="context1" xmlns="http://camel.apache.org/schema/spring">
    <route id="planner1">
        ...
    </route>
</camelContext>

但是在我们增加模块化的项目中,我们使用

将路由分组到几个文件中
<routeContext id="context2" xmlns="http://camel.apache.org/schema/spring">
    <route autoStartup="true" id="planner2">
        ...
    </route>
</routeContext>

可以使用 JBoss Fuse Tooling Apache Camel Editor 版本在 Eclipse Luna 上显示相同的文件:7.3.1.v20150810-1602-H64-Final。

有没有办法让它在 Eclipse Mars 上使用 Jboss Fuse Tooling Apache Camel Editor 8.0.0.Final-v20161003-0720- B128?

有支持 Eclipse Mars 的工具的新版本。

Lars Heineman 是此工具的主要开发人员,最近在博客中发表了有关此内容的文章:http://lhein.blogspot.se/2016/10/jboss-fuse-tooling-80-for-eclipse-mars.html

豪尔赫, 您遇到的问题似乎已经被报告过。 (参见 https://issues.jboss.org/browse/FUSETOOLS-1996

我希望 Fuse Tooling 9.1 能够解决这个问题。作为解决方法,我只能建议暂时使用 Camel Context。

拉斯