Perhaps this is a shot in the dark but I am attempting to use the Grails Liquibase plugin and it appears as though there is a compatibility issue with the Taggable plugin. The Taggable plugin works by implementing Taggable on the domain classes which you want to be taggable.

When I try to run the Liquibase command grails generate-changelog I get the following exception on the classes implementing Taggable:

java.lang.RuntimeException: Unable to locate constructor with Class parameter for class org.codehaus.groovy.grails.commons.DefaultGrailsControllerClass

If I remove implements Taggable this error goes away.

I am thinking this has something to do with the class loader; perhaps Taggable isn't getting loaded?

Thank you very much

link|improve this question

Is there a causing exception in the stacktrace? – Javid Jamae Sep 12 '10 at 1:27
Hi Javid - Yes, UserPost is the class that implements Taggable Caused by: java.lang.ClassNotFoundException: com.grigori.UserPost at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:307) at java.lang.ClassLoader.loadClass(ClassLoader.java:248) at java.lang.ClassLoader.loadClass(ClassLoader.java:248) – UserLoser Sep 12 '10 at 1:39
feedback

1 Answer

For database migrations there's now a 'official' plugin.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.