vote up 0 vote down star

I have a camel route file which I want to populate/configure based on certain database records accessed through Grails domain classes. However, I cannot seem to access the domain classes (or anything in the spring context) from MyRoute.groovy. Any ideas on how I can make that possible?

I tried the recommendations at http://stackoverflow.com/questions/574807/grails-accessing-spring-beans-in-the-destory-closure-of-bootstrap-code but that doesn't seem to work.

flag

52% accept rate

2 Answers

vote up 1 vote down check

In the Java RouteBuilder you can get hold of the CamelContext with the getContext() method. I assume you have the same method in the groovy builder.

With the CamelContext you can lookup spring beans from its registry.

MyType foo = context.getRegistry().lookup("mySpringBean", MyType.class);

link|flag
You're exactly right. Unfortunately, it seems that this doesn't solve my issue though because at the the time I try to call the serviceBean it seems that it hasn't been GORMified yet and has no access to the database. – Abdullah Jibaly Jun 9 at 7:36
vote up 0 vote down

You should take look at: http://camel.apache.org/hibernate.html

Please note, that you should add: ... ref('sessionFactory') ...

to beans section in your resources.groovy

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.