I know there is already a question in regards to this but I think that the issue that causes might be different based on what they are saying. I have the following setup:
This grails application has multiple data sources (I am not sure if this fact has anything to do with it) and it occurs after a call against a Domain object from the second datasource which has been reversed engineered with the grails reverse engineer plugin (have done that on a separate project and then imported to my project.
This is the GORM call that causes the problem from both the Controller and the Service layers
def campusAttributes = CampusAttribute.findAllByNameLike("%Next Option%")
I have found some other complains about this and it seems to be an issue with Maven and the grails hibernate plugin version but in that scenario the issue was very particular to grails 2.3.1 and a specific hibernate plugin version.
All I did was a grails run-app (did not build the app with maven neither have any mocking)
Thanks in advance
I had the same problem upgrading a grails project from 2.2.4 to 2.3.6. I've upgraded the hibernate plugin from 3.6.10 to 3.6.10.8 and the error was gone.