I have something like this
1) Grails application --> Invokes message listener written in Java
2) Message Listener --> Reflectively invokes service classes written in Java
3) Now I want to create GORM Domain objects from these classes
For this I think I need to do two things (Correct me if I am wrong)
A) Get access to Grails applicationContext
B) Get the beans that I need e.g. domain objects and perform operations on them.
But before I do that can anyone help me how to do "A" ?


Reply With Quote
