vote up 0 vote down star
1

I'm just getting started with Groovy/Grails.

I added a new domain controller to my project, and generate-controller doesn't like it.

There are other indications something's wrong: If I run the app no table is actually created in the database for this.

I've reduced the DomainController to one String field and no constraints, just to make sure there wasn't something wrong with my specification. I also tried renaming it, just in case there was something about the original name (Privacy) that conflicted with something.

I'm sure I have the correct name, and that the file is called PrivacyOptions.groovy and inside the class is also called PrivacyOptions.

Here's the error:

Running script /opt/local/grails/scripts/GenerateController.groovy
Environment set to development
Domain class not found in grails-app/domain, trying hibernate mapped classes...
No domain class found for name PrivacyOptions. Please try again and enter a valid domain class name
flag

75% accept rate

1 Answer

vote up 1 vote down check

I don't know how you got to this point, but maybe this will help you get over the hump.

Am I correct to assume that you used "grails create-domain-class" to create PrivacyOptions domain object, and the Groovy script showed up in your grails-app/domain directory? Did you get a PrivacyOptionsTests in test/unit? Did that pass? Did you add a package?

link|flag
I did it from the NetBeans IDE. I tink the problem was that when I created the file I selected the option "create a groovy class" instead of the option "create a domain class". I guess somewhere in some secret config file is a list of classes that are Domains and that the create-domain-class does the necessary housekeeping. – ראובן Aug 7 at 2:18
Yes, create-domain-class is the key. – duffymo Aug 7 at 10:01

Your Answer

Get an OpenID
or

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