Reputation: 508
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?
Upvotes: 2
Views: 622
Reputation: 217
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
Upvotes: 3
Reputation: 55525
There is a new release of the tooling that support Eclipse Mars.
Lars Heineman whom is a key developer on this tooling blogged recently about this: http://lhein.blogspot.se/2016/10/jboss-fuse-tooling-80-for-eclipse-mars.html
Upvotes: 1