Tagged Questions
1
vote
1answer
71 views
Why am I getting Grails SessionFactoryProxy?
I have inherited an older Grails 1.2 application, and I am trying to upgrade it to the latest Grails 2.1.2. Something has changed in Grails because this code from resources.groovy used to work:
...
1
vote
1answer
455 views
Injecting sessionFactory into grails service when calling from a groovy script
I have a grails service:
MyService {
def sessionFactory
void someMethod() {
//...
sessionFactory.currentSession.createSQLQuery(sql);
//...
}
}
I want to invoke ...
2
votes
2answers
5k views
In Grails how do I access the hibernate session inside of a domain class static method?
I've read various articles on the web, but they seem rather scattered on this point. Exactly what do I need to do in my configuration and in my method to get the hibernate session. I'm trying to ...