I am using Camel with Spring like follows:

<camelContext xmlns="http://camel.apache.org/schema/spring";>
    <routeBuilder ref="routeBuilder1"/>
    ...
</camelContext>

I'm looking for a way to run some code before the route builders are run. 
This seems like it should be straightforward.  I've tried the @PostConstruct
(with CommonAnnotationBeanPostProcessor).  I've also tried
ApplicationContextEvent.  These initialization hooks all work, but they are
all executed *after* the RouteBuilder.configure() methods are called.

How does the <camelContext> tag integrate into Spring and how can I specify
the initialization order of my own beans relative to it?

Thanks.
-- 
View this message in context: 
http://old.nabble.com/Camel%2C-Spring-and-Initialization-tp28113566p28113566.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to