Search code examples
grails-ormgrails-2.0grails-plugingrails-domain-class

Method on class [] was used outside of a Grails application. If running in the context of a test using the mocking API or bootstrap Grails Correctly


PROBLEM

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:

  1. grails version: 2.3.4
  2. Hibernate plugin: runtime ":hibernate:3.6.10.6"
  3. My Bootstrap is empty
  4. My Controller and Service tests are commented

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


Solution

  • 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.