It looks like the Localization.decodeMessage() method is causing this error when it tries to call Localisation.findAll():
HibernateException: No Session found for current thread
I found one solution was to wrap the findAll() call in a withNewSession closure like this:
Localization.withNewSession {
def lst = Localization.findAll(
"from org.grails.plugins.localization.Localization as x where x.code = ? and x.locale in ('*', ?, ?) order by x.relevance desc",
[code, locale.getLanguage(), locale.getLanguage() + locale.getCountry()])
msg = lst.size() > 0 ? lst[0].text : missingValue
}
There may be other areas where this is needed or there may be other, more appropriate solutions - I can't call myself a Grails or even a Java expert so I thought I'd just let you know and maybe you'll be able to update the plugin (which is really, really useful, by the way!)
It looks like the Localization.decodeMessage() method is causing this error when it tries to call Localisation.findAll():
I found one solution was to wrap the findAll() call in a withNewSession closure like this:
There may be other areas where this is needed or there may be other, more appropriate solutions - I can't call myself a Grails or even a Java expert so I thought I'd just let you know and maybe you'll be able to update the plugin (which is really, really useful, by the way!)