Search code examples
eclipseapache-cameljbossfuse

Editing camel routes on routeContext with Camel Fuse not working


I just installed Jboss Tools Integration Stack for Eclipse Mars to be able to edit Camel routes in a graphic way. Problem is that it only load routes that are defined inside

<camelContext id="context1" xmlns="http://camel.apache.org/schema/spring">
    <route id="planner1">
        ...
    </route>
</camelContext>

But in our project to increase modularity, we have grouped routes in several files using

<routeContext id="context2" xmlns="http://camel.apache.org/schema/spring">
    <route autoStartup="true" id="planner2">
        ...
    </route>
</routeContext>

This same files can be displayed on Eclipse Luna with JBoss Fuse Tooling Apache Camel Editor version: 7.3.1.v20150810-1602-H64-Final.

Is there a way to make it work on Eclipse Mars with Jboss Fuse Tooling Apache Camel Editor version 8.0.0.Final-v20161003-0720-B128?


Solution

  • Jorge, the issue you encounter seems to be already reported. (see https://issues.jboss.org/browse/FUSETOOLS-1996)

    I expect that to be fixed with Fuse Tooling 9.1. As a workaround I can only suggest to stay with Camel Context for now.

    Lars