vote up 1 vote down star

The following Groovy code creates a GORM-persisted domain class called Foo when written to grails-app/domain/Foo.groovy:

class Foo {
  String someField
}

However, if I instead write "public class Foo" the class does NOT get GORM-persisted (i.e. no save() method injected, no database table created, etc.):

public class Foo {
  String someField
}

I'm running the latest stable release of Grails (1.1).

Question: Is this a bug or is it the expected behaviour? Why?

Update #1: Related sub-question: Am I the only one hitting this problem? It would be nice to know if anyone else is able to replicate this. Thanks!

flag

2 Answers

vote up 1 vote down check

Groovy classes are public by default (likewise for Groovy methods), so there should be no change in behaviour if you add public. However, I cannot reproduce this behaviour/bug in Grails 1.1.1

link|flag
vote up 1 vote down

Sounds like a bug.

I'd enter the details into JIRA and get the answer from the source.

http://jira.codehaus.org/browse/GRAILS

link|flag
Thanks for your pointer to the Grails JIRA. Are you able to replicate the problem? – knorv Apr 2 at 10:06
I'm running 1.0.4 and it doesn't have the problem. – Kevin Williams Apr 4 at 4:05

Your Answer

Get an OpenID
or

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