active questions tagged gorm - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:59:00Zhttp://stackoverflow.com/feeds/tag/gormhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1910547/gorm-list-to-return-superclass-objects-only0GORM list() to return superclass objects onlyJean Barmash2009-12-15T21:31:21Z2009-12-16T08:40:30Z
<p>I have a simple object hierarchy, and I want to query each of the objects using list(). The problem is that because of polymorphism, Task.list() returns both instances of type Task and ComplexTask. </p>
<pre><code>class Task {
}
class ComplexTask extends Task {
}
</code></pre>
<p>I realize I can solve my problem by having a common abstract superclass, or filter results based on returned type, but was wondering if there is a way to use dynamic finders and get back superclass instances only. </p>
http://stackoverflow.com/questions/1890558/grails-querying-a-hasmany-relationship0Grails: querying a hasMany relationshipDon2009-12-11T20:11:18Z2009-12-11T23:50:48Z
<p>Hi,</p>
<p>In my Grails app I have the following domain classes</p>
<pre><code>Foo {
String fooVal
static hasMany = [bars: Bars]
}
Bar {
String barVal
Foo foo
}
</code></pre>
<p>I want to find all instances of Foo that are associated with one instance of Bar with barVal = "1" <em>and</em> another instance of Bar with barVal = "2"</p>
<p>I've tried:</p>
<pre><code> Foo.withCriteria {
bars {
eq('barVal', "1")
eq('barVal', "2")
}
}
</code></pre>
<p>and</p>
<pre><code> Foo.withCriteria {
bars {
eq('barVal', "1")
}
bars {
eq('barVal', "2")
}
}
</code></pre>
<p>But both return an empty result set. If I only include either one of the bar predicates, the expected instance of Foo is returned.</p>
<p>If there's any reasonable way to do this with HQL that would be fine too. However, bear in mind that the actual number of Bars that need to be matched is 1...N, rather than 2.</p>
http://stackoverflow.com/questions/1875841/grails-optimistic-locking-strange-behaviour0Grails optimistic locking strange behaviourBungleFeet2009-12-09T18:28:28Z2009-12-09T18:28:28Z
<p>I've been trying to make GORM throw an optimistic locking error in an integration test. It has been said before that it is not possible to test for concurrent update errors without resorting to multiple threads, but even so I find the behaviour of my test case surprising:</p>
<pre><code>void testOptimisticLocking() {
new Widget(foo:"bar").save(flush:true)
// Get the widget and change a property
def widget = Widget.findByFoo("bar")
assertNotNull widget
widget.foo = "baz"
def widgetVersion = widget.version
println "widget: $widgetVersion" // >>> widget: 0
// Discard the widget without saving; Hibernate now knows nothing about it
widget.discard()
// Get a different instance of the same widget from the database,
// with the old value for foo
def sameWidget = Widget.findByFoo("bar")
assertNotNull sameWidget
assertFalse System.identityHashCode(sameWidget) == System.identityHashCode(widget)
// Change the foo property and save
sameWidget.foo = "bat"
sameWidget.save(flush:true)
// Check the version has incremented
println "sameWidget: $sameWidget.version" // >>> sameWidget: 1
assertTrue widgetVersion < sameWidget.version
// Check the database hold the "bat" widget
sameWidget.discard()
assertEquals 0, Widget.countByFoo("bar")
assertEquals 1, Widget.countByFoo("bat")
// Reattach the original widget and try to save it
assertFalse widget.isAttached()
widget.attach()
println "widget: $widget.version" // >>> widget: 0
assertEquals widgetVersion, widget.version
assertEquals "baz", widget.foo
// TEST FAILS HERE
// No error is thrown, and the update fails silently!
shouldFail(org.hibernate.StaleStateException) {
assertTrue widget.validate()
widget.save(flush:true)
println widget.foo // >>> baz
widget.discard()
println "baz: " + Widget.countByFoo("baz") // >>> baz: 0
println "bat: " + Widget.countByFoo("bat") // >>> bat: 1
}
}
</code></pre>
<p>The re-attached instance of Widget is not persisted to the database, but no exception is thrown!</p>
<p>My test case is rather contrived, but still I am surprised by the result.</p>
<p>Can anybody explain this?</p>
http://stackoverflow.com/questions/1869309/grails-gorm-composition-or-hasone1Grails GORM composition or hasOne?Visionary Software Solutions2009-12-08T19:33:56Z2009-12-08T21:22:21Z
<p>I'm a bit confused about the differences between using the static hasOne map and composing objects in domain classes. What are the differences between the two? ie.</p>
<pre><code>class DegreeProgram {
String degreeName
Date programOfStudyApproval
static hasOne = [committee:GraduateCommittee]
}
</code></pre>
<p>versus</p>
<pre><code>class DegreeProgram {
String degreeName
Date programOfStudyApproval
GraduateCommittee committee
}
</code></pre>
<p>where GraduateCommittee is another GORM domain model class.</p>
http://stackoverflow.com/questions/1839050/grails-gorm-domain-class-relationship0Grails GORM Domain class relationshipalcoholitro2009-12-03T10:30:11Z2009-12-03T22:23:52Z
<p>Grails 1.1.1
Goovy 1.5.7</p>
<p>In a relationship such this:</p>
<p>Author 1 -- n Book n -- 1 Publisher</p>
<p>Defined in Grails:</p>
<pre><code>class Author {
String firstName
String lastName
static hasMany = [books: Book]
static constraints = {
books(nullable: true)
}
}
class Book {
String title
Author author
Publisher publisher
static constraints = {
author(nullable: true)
publisher(nullable: true)
}
}
class Publisher {
String name
static hasMany = [books: Book]
static constraints = {
books(nullable: true)
}
}
</code></pre>
<p>I want to load a Book with the values of Publisher and Author.
When i get a Book with the query:</p>
<pre><code>def book2 = Book.findAllByAuthor(author)
</code></pre>
<p>I get the response with the autor assosiated but the publisher only have the id and name class in the other query:</p>
<pre><code>def book3 = Book.findAllByPublisher(publisher)
</code></pre>
<p>I retrieve me the inverse result,i have the book with the publisher data but the author only have the id and the class name.</p>
<p>Where is the error in the defined model ? o there is an error in the way to do the queries ?</p>
<p>Edit: </p>
<p>I need the way to retrieve the values only with the query like this:</p>
<pre><code>def book2 = Book.findAllByAuthor(author, [fetch:[publisher:'eager']])
</code></pre>
<p>In this one I can manage the value of publisher.</p>
<p>Question: If publisher had a <code>hasmany</code> or <code>Domain</code> related, getting the book I'm able to read the attributes?</p>
<p>Thanks.
Thanks.</p>
http://stackoverflow.com/questions/1377091/how-to-setup-one-to-many-unidirectional-mapping-for-grails-application-on-gae0How to setup one-to-many unidirectional mapping for grails application on GAE ?limcheekin2009-09-04T03:31:42Z2009-11-30T03:26:21Z
<p>I try to perform testing on one-to-many unidirectional mapping for grails application on google app engine (GAE) using JPA. The one-to-many unidirectional mapping I attempt to define is between User and Role class. Unfortunately, I am stuck. Just curious is there any developer out there able to make it work successfully.</p>
<p>Following is my development environment:</p>
<ul>
<li>Windows XP Professional </li>
<li>App Engine SDK 1.2.2 </li>
<li>Grails 1.1.1 </li>
<li>Plugins used: app-engine 0.8.3, gorm-jpa 0.5</li>
</ul>
<p>The source code located at:</p>
<ul>
<li><a href="http://rapidshare.com/files/275369669/one2many.zip.html" rel="nofollow">http://rapidshare.com/files/275369669/one2many.zip.html</a></li>
</ul>
<p>The complete errors stack trace is here: </p>
<pre><code> [java] Sep 4, 2009 2:08:42 AM com.google.apphosting.utils.jetty.JettyLogger
</code></pre>
<p>warn
[java] WARNING: Failed startup of context com.google.apphosting.utils.jetty
.DevAppEngineWebAppContext@1ebd75b{/,C:\Documents and Settings\limcheekin.grail
s\1.1.1\projects\one2many\stage}
[java] org.springframework.beans.factory.access.BootstrapException: Error e
xecuting bootstraps; nested exception is org.codehaus.groovy.runtime.InvokerInvo
cationException: org.springframework.orm.jpa.JpaSystemException: Class "com.vobj
ect.grailsfuse.User" has collection field "roles" and this has no mapping in the
table for the element class "com.vobject.grailsfuse.Role"; nested exception is
javax.persistence.PersistenceException: Class "com.vobject.grailsfuse.User" has
collection field "roles" and this has no mapping in the table for the element cl
ass "com.vobject.grailsfuse.Role"
[java] at org.codehaus.groovy.grails.web.context.GrailsContextLoader.cr
eateWebApplicationContext(GrailsContextLoader.java:74)
[java] at org.springframework.web.context.ContextLoader.initWebApplicat
ionContext(ContextLoader.java:199)
[java] at org.springframework.web.context.ContextLoaderListener.context
Initialized(ContextLoaderListener.java:45)
[java] at org.mortbay.jetty.handler.ContextHandler.startContext(Context
Handler.java:530)
[java] at org.mortbay.jetty.servlet.Context.startContext(Context.java:1
35)
[java] at org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppCon
text.java:1218)
[java] at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandl
er.java:500)
[java] at org.mortbay.jetty.webapp.WebAppContext.doStart(WebAppContext.
java:448)
[java] at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCyc
le.java:40)
[java] at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapp
er.java:117)
[java] at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCyc
le.java:40)
[java] at org.mortbay.jetty.handler.HandlerWrapper.doStart(HandlerWrapp
er.java:117)
[java] at org.mortbay.jetty.Server.doStart(Server.java:217)
[java] at org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCyc
le.java:40)
[java] at com.google.appengine.tools.development.JettyContainerService.
startContainer(JettyContainerService.java:152)
[java] at com.google.appengine.tools.development.AbstractContainerServi
ce.startup(AbstractContainerService.java:116)
[java] at com.google.appengine.tools.development.DevAppServerImpl.start
(DevAppServerImpl.java:218)
[java] at com.google.appengine.tools.development.DevAppServerMain$Start
Action.apply(DevAppServerMain.java:162)
[java] at com.google.appengine.tools.util.Parser$ParseResult.applyArgs(
Parser.java:48)
[java] at com.google.appengine.tools.development.DevAppServerMain.
<blockquote>
<p>(DevAppServerMain.java:113)
[java] at com.google.appengine.tools.development.DevAppServerMain.main(
DevAppServerMain.java:89)
[java] Caused by: org.codehaus.groovy.runtime.InvokerInvocationException: o
rg.springframework.orm.jpa.JpaSystemException: Class "com.vobject.grailsfuse.Use
r" has collection field "roles" and this has no mapping in the table for the ele
ment class "com.vobject.grailsfuse.Role"; nested exception is javax.persistence.
PersistenceException: Class "com.vobject.grailsfuse.User" has collection field "
roles" and this has no mapping in the table for the element class "com.vobject.g
railsfuse.Role"
[java] ... 7 more
[java] Caused by: org.springframework.orm.jpa.JpaSystemException: Class "co
m.vobject.grailsfuse.User" has collection field "roles" and this has no mapping
in the table for the element class "com.vobject.grailsfuse.Role"; nested excepti
on is javax.persistence.PersistenceException: Class "com.vobject.grailsfuse.User
" has collection field "roles" and this has no mapping in the table for the elem
ent class "com.vobject.grailsfuse.Role"
[java] at org.grails.jpa.JpaPluginSupport$__clinit__closure3_closure6_c
losure11_closure38.doCall(JpaPluginSupport.groovy:452)
[java] at BootStrap$_closure1.doCall(BootStrap.groovy:13)
[java] ... 7 more
[java] Caused by: javax.persistence.PersistenceException: Class "com.vobjec
t.grailsfuse.User" has collection field "roles" and this has no mapping in the t
able for the element class "com.vobject.grailsfuse.Role"
[java] at org.datanucleus.jpa.NucleusJPAHelper.getJPAExceptionForNucleu
sException(NucleusJPAHelper.java:264)
[java] at org.datanucleus.jpa.EntityTransactionImpl.commit(EntityTransa
ctionImpl.java:122)
[java] ... 9 more
[java] Caused by: org.datanucleus.exceptions.NucleusUserException: Class "c
om.vobject.grailsfuse.User" has collection field "roles" and this has no mapping
in the table for the element class "com.vobject.grailsfuse.Role"
[java] at org.datanucleus.store.mapped.scostore.FKSetStore.(FKSet
Store.java:184)
[java] at org.datanucleus.store.appengine.DatastoreFKSetStore.(Da
tastoreFKSetStore.java:38)
[java] at org.datanucleus.store.appengine.DatastoreManager.newFKSetStor
e(DatastoreManager.java:353)
[java] at org.datanucleus.store.mapped.MappedStoreManager.getBackingSto
reForCollection(MappedStoreManager.java:734)
[java] at org.datanucleus.store.mapped.MappedStoreManager.getBackingSto
reForField(MappedStoreManager.java:646)
[java] at org.datanucleus.sco.backed.HashSet.(HashSet.java:102)
[java] at org.datanucleus.util.ClassUtils.newInstance(ClassUtils.java:9
4)
[java] at org.datanucleus.sco.SCOUtils.newSCOInstance(SCOUtils.java:164
)
[java] at org.datanucleus.state.JDOStateManagerImpl.wrapSCOField(JDOSta
teManagerImpl.java:3040)
[java] at org.datanucleus.store.fieldmanager.LoadFieldManager.internalF
etchObjectField(LoadFieldManager.java:92)
[java] at org.datanucleus.store.fieldmanager.AbstractFetchFieldManager.
fetchObjectField(AbstractFetchFieldManager.java:104)
[java] at org.datanucleus.state.AbstractStateManager.replacingObjectFie
ld(AbstractStateManager.java:1197)
[java] at com.vobject.grailsfuse.User.jdoReplaceField(User.groovy)
[java] at com.vobject.grailsfuse.User.jdoReplaceFields(User.groovy)
[java] at org.datanucleus.state.JDOStateManagerImpl.replaceFields(JDOSt
ateManagerImpl.java:2772)
[java] at org.datanucleus.state.JDOStateManagerImpl.replaceFields(JDOSt
ateManagerImpl.java:2791)
[java] at org.datanucleus.state.JDOStateManagerImpl.loadFieldsInFetchPl
an(JDOStateManagerImpl.java:1610)
[java] at org.datanucleus.ObjectManagerImpl.performDetachAllOnCommitPre
paration(ObjectManagerImpl.java:3192)
[java] at org.datanucleus.ObjectManagerImpl.preCommit(ObjectManagerImpl
.java:2931)
[java] at org.datanucleus.TransactionImpl.internalPreCommit(Transaction
Impl.java:369)
[java] at org.datanucleus.TransactionImpl.commit(TransactionImpl.java:2
56)
[java] at org.datanucleus.jpa.EntityTransactionImpl.commit(EntityTransa
ctionImpl.java:104)
[java] ... 9 more
[java] Sep 4, 2009 2:08:42 AM com.google.apphosting.utils.jetty.JettyLogger
warn
[java] WARNING: Nested in org.springframework.beans.factory.access.Bootstra
pException: Error executing bootstraps; nested exception is org.codehaus.groovy.
runtime.InvokerInvocationException: org.springframework.orm.jpa.JpaSystemExcepti
on: Class "com.vobject.grailsfuse.User" has collection field "roles" and this ha
s no mapping in the table for the element class "com.vobject.grailsfuse.Role"; n
ested exception is javax.persistence.PersistenceException: Class "com.vobject.gr
ailsfuse.User" has collection field "roles" and this has no mapping in the table
for the element class "com.vobject.grailsfuse.Role":
[java] Class "com.vobject.grailsfuse.User" has collection field "roles" and
this has no mapping in the table for the element class "com.vobject.grailsfuse.
Role"
[java] org.datanucleus.exceptions.NucleusUserException: Class "com.vobject.
grailsfuse.User" has collection field "roles" and this has no mapping in the tab
le for the element class "com.vobject.grailsfuse.Role"
[java] at org.datanucleus.store.mapped.scostore.FKSetStore.(FKSet
Store.java:184)
[java] at org.datanucleus.store.appengine.DatastoreFKSetStore.(Da
tastoreFKSetStore.java:38)
[java] at org.datanucleus.store.appengine.DatastoreManager.newFKSetStor
e(DatastoreManager.java:353)
[java] at org.datanucleus.store.mapped.MappedStoreManager.getBackingSto
reForCollection(MappedStoreManager.java:734)
[java] at org.datanucleus.store.mapped.MappedStoreManager.getBackingSto
reForField(MappedStoreManager.java:646)
[java] at org.datanucleus.sco.backed.HashSet.(HashSet.java:102)
[java] at org.datanucleus.util.ClassUtils.newInstance(ClassUtils.java:9
4)
[java] at org.datanucleus.sco.SCOUtils.newSCOInstance(SCOUtils.java:164
)
[java] at org.datanucleus.state.JDOStateManagerImpl.wrapSCOField(JDOSta
teManagerImpl.java:3040)
[java] at org.datanucleus.store.fieldmanager.LoadFieldManager.internalF
etchObjectField(LoadFieldManager.java:92)
[java] at org.datanucleus.store.fieldmanager.AbstractFetchFieldManager.
fetchObjectField(AbstractFetchFieldManager.java:104)
[java] at org.datanucleus.state.AbstractStateManager.replacingObjectFie
ld(AbstractStateManager.java:1197)
[java] at com.vobject.grailsfuse.User.jdoReplaceField(User.groovy)
[java] at com.vobject.grailsfuse.User.jdoReplaceFields(User.groovy)
[java] at org.datanucleus.state.JDOStateManagerImpl.replaceFields(JDOSt
ateManagerImpl.java:2772)
[java] at org.datanucleus.state.JDOStateManagerImpl.replaceFields(JDOSt
ateManagerImpl.java:2791)
[java] at org.datanucleus.state.JDOStateManagerImpl.loadFieldsInFetchPl
an(JDOStateManagerImpl.java:1610)
[java] at org.datanucleus.ObjectManagerImpl.performDetachAllOnCommitPre
paration(ObjectManagerImpl.java:3192)
[java] at org.datanucleus.ObjectManagerImpl.preCommit(ObjectManagerImpl
.java:2931)
[java] at org.datanucleus.TransactionImpl.internalPreCommit(Transaction
Impl.java:369)
[java] at org.datanucleus.TransactionImpl.commit(TransactionImpl.java:2
56)
[java] at org.datanucleus.jpa.EntityTransactionImpl.commit(EntityTransa
ctionImpl.java:104)
[java] at org.grails.jpa.JpaPluginSupport$__clinit__closure3_closure6_c
losure11_closure38.doCall(JpaPluginSupport.groovy:452)
[java] at BootStrap$_closure1.doCall(BootStrap.groovy:13)
[java] at com.google.appengine.tools.development.JettyContainerService.
startContainer(JettyContainerService.java:152)
[java] at com.google.appengine.tools.development.AbstractContainerServi
ce.startup(AbstractContainerService.java:116)
[java] at com.google.appengine.tools.development.DevAppServerImpl.start
(DevAppServerImpl.java:218)
[java] at com.google.appengine.tools.development.DevAppServerMain$Start
Action.apply(DevAppServerMain.java:162)
[java] at com.google.appengine.tools.util.Parser$ParseResult.applyArgs(
Parser.java:48)
[java] at com.google.appengine.tools.development.DevAppServerMain.
</blockquote>
<p>Please advice. See whether you have any idea on what went wrong…</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1803415/grails-gorm-problem-object-references-an-unsaved-transient-instance0Grails GORM problem: Object references an unsaved transient instanceknorv2009-11-26T12:28:47Z2009-11-26T13:22:38Z
<p>The Grails code below throws the following exception when trying to <code>.save()</code> the Foo object:</p>
<pre><code>org.hibernate.TransientObjectException/
org.springframework.dao.InvalidDataAccessApiUsageException:
object references an unsaved transient instance -
save the transient instance before flushing: Bar
</code></pre>
<p>I guess I'm missing out on some of the GORM semantics in connection with automatically populating domain objects from HTTP params. </p>
<p>My question is simply:</p>
<ul>
<li>What is the correct way to populate and save the Foo object, without getting said exception?</li>
</ul>
<p>Model:</p>
<pre><code>class Foo {
Bar bar
}
</code></pre>
<p>View:</p>
<pre><code><g:form id="${foo.id}">
<g:select name="foo.bar.id" from="${Bar.list()}" />
</g:form>
</code></pre>
<p>Controller:</p>
<pre><code>class FooController {
def fooAction = {
Foo foo = new Foo(params)
foo.save()
[ foo: foo ]
}
}
</code></pre>
http://stackoverflow.com/questions/1787120/grails-domain-class-relationship-to-itself1Grails domain class relationship to itselfintargc2009-11-24T00:51:40Z2009-11-24T01:20:25Z
<p>I need a way to be able to have a domain class to have many of itself. In other words, there is a parent and child relationship. The table I'm working on has data and then a column called "parent_id". If any item has the parent_id set, it is a child of that element. </p>
<p>Is there any way in Grails to tell hasMany which field to look at for a reference?</p>
http://stackoverflow.com/questions/1750894/disabling-locking-for-non-critical-grails-gorm-domain-classes0Disabling locking for non-critical Grails/GORM domain classesknorv2009-11-17T18:39:16Z2009-11-17T18:45:32Z
<p>Assume the following code in a Grails controller:</p>
<pre><code>def action = {
ClassName o = ClassName.findByFoo(params.foo)
if (o) {
o.counter += 1
}
}
</code></pre>
<p>By default Grails uses optimistic locking via the <code>version</code> column added by default to all GORM database tables. However, if a sufficiently large number of multiple concurrent requests are sent to this action the optimistic locking mechanism will break down with the following exception:</p>
<pre><code>org.hibernate.StaleObjectStateException:
Row was updated or deleted by another transaction (or unsaved-value mapping was
incorrect): [ClassName#id]
</code></pre>
<p>For domain objects where a failed update/delete is totally non-critical I'd like to disable the locking mechanism, so that no StaleObjectStateException will be thrown thrown. How do I achieve that?</p>
http://stackoverflow.com/questions/1720533/groovy-on-grails-abstract-classes-in-gorm-relationships1Groovy on Grails: Abstract Classes in GORM Relationships Visionary Software Solutions2009-11-12T07:33:15Z2009-11-16T18:19:09Z
<p>Grails GORM does not persist abstract domain classes to the database, causing a break in polymorphic relationships. For example:</p>
<pre><code>abstract class User {
String email
String password
static constraints = {
email(blank:false, nullable:false,email:true)
password(blank:false, password:true)
}
static hasMany = [membership:GroupMembership]
}
class RegularEmployee extends User {}
class Manager extends User {
Workgroup managedGroup
}
class Document {
String name
String description
int fileSize
String fileExtension
User owner
Date creationTime
Date lastModifiedTime
DocumentData myData
boolean isCheckedOut
enum Sensitivity {LOW,MEDIUM,HIGH}
def documentImportance = Sensitivity.LOW
static constraints = {
name(nullable:false, blank:false)
description(nullable:false, blank:false)
fileSize(nullable:false)
fileExtension(nullable:false)
owner(nullable:false)
myData(nullable:false)
}
</code></pre>
<p>}</p>
<p>causes</p>
<blockquote>
<p>Caused by: org.hibernate.MappingException: An association from the table document refers to an unmapped class: User
... 25 more
2009-11-11 23:52:58,933 [main] ERROR mortbay.log - Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'messageSource': Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager': Cannot resolve reference to bean 'sessionFactory' while setting bean property 'sessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory': Invocation of init method failed; nested exception is org.hibernate.MappingException: An association from the table document refers to an unmapped class: User:
org.hibernate.MappingException: An association from the table document refers to an unmapped class: User</p>
</blockquote>
<p>But in this scenario, I want the polymorphic effects of allowing any user to own a document, while forcing every user of the system to fit into one of the defined roles. Hence, User should not be directly instantiated and is made abstract. </p>
<p>I don't want to use an enum for roles in a non-abstract User class, because I want to be able to add extra properties to the different roles, which may not make sense in certain contexts (I don't wanna have a single User with role set to RegularEmployee that somehow gets a not null managedGroup).</p>
<p>Is this a bug in Grails? Am I missing something? </p>
http://stackoverflow.com/questions/1739365/groovy-on-grails-gorm-and-bitsets1Groovy on Grails: GORM and BitSets?Visionary Software Solutions2009-11-15T23:57:41Z2009-11-16T18:04:47Z
<p>I don't see anything in the <a href="http://grails.org/GORM" rel="nofollow">official documentation</a> about unsupported persistence data types, so I'm working under the assumption that types available in the Groovy language should be handled. However, for the following domain class:</p>
<pre><code>class DocGroupPermissions {
Workgroup workgroup;
Document document;
BitSet permissions = new BitSet(2)
public DocGroupPermissions() {}
void setPermissions(boolean canRead, boolean canWrite){
setReadPermissions(canRead)
setWritePermissions(canWrite)
}
BitSet getPermissions()
{
return permissions
}
void setReadPermissions(boolean canRead)
{
permissions.set(0,canRead)
}
void setWritePermissions(boolean canWrite)
{
permissions.set(1,canWrite)
}
boolean getReadPermissions()
{
return permissions.get(0)
}
boolean getWritePermissions()
{
return permissions.get(1)
}
static belongsTo = [workgroup:Workgroup, document:Document]
static constraints = {
workgroup(nullable:false, blank:false)
document(nullable:false, blank:false)
}
</code></pre>
<p>}</p>
<p>I'm getting: </p>
<blockquote>
<p>2009-11-15 16:46:12,298 [main] ERROR context.ContextLoader - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'messageSource': Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager': Cannot resolve reference to bean 'sessionFactory' while setting bean property 'sessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory': Invocation of init method failed; nested exception is org.hibernate.MappingException: An association from the table doc_group_permissions refers to an unmapped class: java.util.BitSet</p>
</blockquote>
<p>Has anyone run into this before?</p>
http://stackoverflow.com/questions/1723611/sorting-objects-based-on-custom-domain-class-methods0Sorting Objects Based on Custom Domain Class Methods Thody2009-11-12T16:42:40Z2009-11-15T13:28:29Z
<p>I have a domain class, in which I've defined some methods which give the object a score based on different algorithms (eg. popularity).</p>
<p>I now want to retrieve a list of these objects sorted by one of these scores (eg. descending by popularity score).</p>
<p>Is there a way to do with with GORM?</p>
<p>Example class:</p>
<pre><code>class SomeObject {
String title
Integer popularity() {
//some algorithm
return popularity
}
}
</code></pre>
http://stackoverflow.com/questions/1701600/hibernate-gorm-collection-was-not-processed-by-flush0Hibernate/GORM: collection was not processed by flush()Don2009-11-09T15:06:17Z2009-11-09T22:10:29Z
<p>Hi,</p>
<p>I have an integration test in my Grails application that fails when I try to save an entity of type <code>Member</code></p>
<pre><code>invitingMember.save(flush: true)
</code></pre>
<p>This raises the following exception</p>
<blockquote>
<p>org.hibernate.AssertionFailure:
collection
[com.mycompany.facet.Facet.channels] was
not processed by flush() at
com.mycompany.member.MemberConnectionService.addOrUpdateContact(MemberConnectionService.groovy:939)</p>
</blockquote>
<p>Earlier in the transaction I add a Facet to a collection. My guess is that the exception is thrown at the line above, because it's only at this point that the Facet is persisted, and "something goes wrong" with saving/flushing the <code>channels</code> collection property of the Facet.</p>
<p>Cheers,
Don</p>
http://stackoverflow.com/questions/1692871/found-shared-references-to-a-collection-org-hibernate-hibernateexception0Found shared references to a collection org.hibernate.HibernateExceptionnightingale2k12009-11-07T12:27:26Z2009-11-07T20:04:46Z
<p>Hi,</p>
<p>I got this error message :
error: Found shared references to a collection: Person.relatedPersons</p>
<p>when I tried to save addToRelatedPersons(anotherPerson) :</p>
<pre><code>person.addToRelatedPersons(anotherPerson);
anotherPerson.addToRelatedPersons(person);
anotherPerson.save();
person.save();
</code></pre>
<p>my domain :</p>
<pre><code>Person {
static hasMany = [relatedPersons:Person];
}
</code></pre>
<p>any idea why this happens ?</p>
http://stackoverflow.com/questions/1357134/grails-hibernate-session-read-only1Grails Hibernate Session Read OnlyAzder2009-08-31T12:02:26Z2009-11-03T09:00:02Z
<p>Hi. I have two grails servers:</p>
<ul>
<li>Server - has read/write access to the database</li>
<li>Web - has read-only access to the database, and for every write it sends a request to the server</li>
</ul>
<p>The problem: How do I make the Web's domain objects read only in one place (config file) for the entire run of the application, instead of writing caching: 'read-only' for each domain class' mapping.</p>
http://stackoverflow.com/questions/1664688/bulk-insert-of-composite-domain-objects0Bulk insert of composite Domain Objectsarcher2009-11-03T01:24:34Z2009-11-03T01:24:34Z
<p>Have domain objects: Profile and ProfileProperty. ProfileProperty <code>static belongsTo=Profile</code> and profile <code>static hasMany=[profileProperties:ProfileProperty]</code>. Each <code>Profile</code> has dozen <code>profileProperties</code>. Need to bulk insert profiles with properties.
Idea was to have <code>Profile#extraProps</code> of type of <code>java.util.Map</code>, marked as <code>static transient =['extraProps']</code>.Overload <code>Profile#afterInsert</code> and <code>Profile#afterUpdate</code> and perform something like that:</p>
<p><code>
def afterInsert = {
extraProps.each { k, v ->
new ProfileProperty(name:k, value:v).save()
}
}
</code></p>
<p>This is crucial that Profile and all its ProfileProperties are saved in same transaction. Since speed is important I'm using hibernate batching. Looks like if <code>save()</code> fails on some property - hibernate throws lots of exceptions saying that session flush should not be performed after exception occurred. I suppose that <code>beforeXXX/afterXXX</code> hibernate events are wrapped with some magic session/transactions code which is the reason of this problem.</p>
<p>Could someone advise either more elegant solution, or just point me to some code samples that solves similar problem? Thanks in advance.</p>
http://stackoverflow.com/questions/1636664/using-grails-gorm-standalone1Using Grails GORM standaloneDaff2009-10-28T11:25:40Z2009-10-28T16:12:23Z
<p>I'm currently wondering how it is possible to use the Groovy ORM Layer from Grails standalone outside of the Grails Framework. There is a <a href="http://www.grails.org/GORM+-+StandAlone+Gorm" rel="nofollow">Documentation Entry</a> for doing so, but the <a href="http://www.grails.org/%5Egorm-0.5.6.zip" rel="nofollow">ZIP file only links to an empty page</a>. I downloaded Grails 1.2-M3 but I couldn't find anything in the docs either. </p>
<p>Does anybody know what the current state is and how to accomplish this?</p>
http://stackoverflow.com/questions/1628982/how-to-make-transactions-work-in-grails2How To Make Transactions Work In GrailsBrad Rhoads2009-10-27T05:58:17Z2009-10-27T16:07:21Z
<p><strong>Summary</strong>
A parent can have many children. How do you write a service such that, if after adding a parent there is an error when adding a child, the entire transaction is rolled back. For example, add parent p1, successfully add child c1, then when adding child c2 an error occurs, both p1 and c1 should be rolled back.</p>
<p><strong>Detailed Problem</strong></p>
<p>In the following code, there is a unique constraint on the name property of the child. So if you try to add the same name twice with a different parent, then the child record should not be added and the parent record should be rolled back. </p>
<p>My problem is that the parent record is not being rolled back. </p>
<p>I am using MySQL w/ InnoDB with Grails 1.2-M2 and Tomcat 6.018.</p>
<p><strong>Data Source</strong></p>
<pre><code>import org.codehaus.groovy.grails.orm.hibernate.cfg.GrailsAnnotationConfiguration
dataSource {
configClass = GrailsAnnotationConfiguration.class
pooled = true
driverClassName = "com.mysql.jdbc.Driver"
dialect = org.hibernate.dialect.MySQLInnoDBDialect
zeroDateTimeBehavior="convertToNull" //Java can't convert ''0000-00-00 00:00:00' to TIMESTAMP
username = "root"
password = "12345"
loggingSql=false
}
hibernate {
cache.use_second_level_cache=true
cache.use_query_cache=true
cache.provider_class='com.opensymphony.oscache.hibernate.OSCacheProvider'
}
// environment specific settings
environments {
development {
dataSource {
dbCreate = "create-drop" // one of 'create', 'create-drop','update'
url = "jdbc:mysql://localhost:3306/transtest?zeroDateTimeBehavior=convertToNull"
}
}
test {
dataSource {
dbCreate = "update"
url = "jdbc:mysql://localhost:3306/transtest?zeroDateTimeBehavior=convertToNull"
}
}
production {
dataSource {
dbCreate = "update"
url = "jdbc:mysql://localhost:3306/transtest?zeroDateTimeBehavior=convertToNull"
}
}
}
</code></pre>
<p>I have the following simple domain classes:</p>
<p><strong>Parent</strong>:</p>
<pre><code>class Parent {
static hasMany = [ children : Child ]
String name
static constraints = {
name(blank:false,unique:true)
}
}
</code></pre>
<p><strong>Child</strong></p>
<pre><code>class Child {
static belongsTo = Parent
String name
Parent parent
static constraints = {
name(blank:false,unique:true)
}
}
</code></pre>
<p><strong>Simple Data Entry GSP</strong></p>
<p><%@ page contentType="text/html;charset=UTF-8" %></p>
<pre><code><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Sample title</title>
</head>
<body>
<h1>Add A Record</h1>
<g:form action="add" name="doAdd">
<table>
<tr>
<td>
Parent Name
</td>
<td>
Child Name
</td>
</tr>
<tr>
<td>
<g:textField name="parentName" />
</td>
<td>
<g:textField name="childName" />
</td>
</tr>
<tr><td><g:submitButton name="update" value="Update" /></td></tr>
</table>
</g:form>
</body>
</html>
</code></pre>
<p><strong>Controller</strong></p>
<pre><code>class AddrecordController {
def addRecordsService
def index = {
redirect action:"show", params:params
}
def add = {
println "do add"
addRecordsService.addAll(params)
redirect action:"show", params:params
}
def show = {}
}
</code></pre>
<p><strong>Service</strong></p>
<pre><code>class AddRecordsService {
// boolean transactional = true //shouldn't this be all I need?
static transactional = true // this should work but still doesn't nor does it work if the line is left out completely
def addAll(params) {
println "add all"
println params
def Parent theParent = addParent(params.parentName)
def Child theChild = addChild(params.childName,theParent)
println theParent
println theChild
}
def addParent(pName) {
println "add parent: ${pName}"
def theParent = new Parent(name:pName)
theParent.save()
return theParent
}
def addChild(cName,Parent theParent) {
println "add child: ${cName}"
def theChild = new Child(name:cName,parent:theParent)
theChild.save()
return theChild
}
}
</code></pre>
http://stackoverflow.com/questions/495979/setting-grails-domain-id-in-bootstrap-groovy1Setting Grails domain id in Bootstrap.groovyRob Hruska2009-01-30T15:49:54Z2009-10-26T13:26:26Z
<p>Is it possible to explicitly set the id of a domain object in Grails' Bootstrap.groovy (or anywhere, for that matter)?</p>
<p>I've tried the following:</p>
<pre><code>new Foo(id: 1234, name: "My Foo").save()
</code></pre>
<p>and:</p>
<pre><code>def foo = new Foo()
foo.id = 1234
foo.name = "My Foo"
foo.save()
</code></pre>
<p>But in both cases, when I print out the results of <code>Foo.list()</code> at runtime, I see that my object has been given an id of 1, or whatever the next id in the sequence is.</p>
<p><strong>Edit:</strong>
This is in Grails 1.0.3, and when I'm running my application in 'dev' with the built-in HSQL database.</p>
<p><strong>Edit:</strong>
chanwit has provided <a href="http://stackoverflow.com/questions/495979/setting-grails-domain-id-in-bootstrap-groovy/498145#498145">one good solution below</a>. However, I was actually looking for a way to set the id without changing my domain's id generation method. This is primarily for testing: I'd like to be able to set certain things to known id values either in my test bootstrap or <code>setUp()</code>, but still be able to use auto_increment or a sequence in production.</p>
http://stackoverflow.com/questions/1119235/storing-and-editing-key-value-pairs-in-grails1Storing and editing key/value pairs in Grails?Jared2009-07-13T12:47:40Z2009-10-22T18:00:02Z
<p>I have a domain object in Grails that needs to store a set of key/value pairs for each instance. There should never be more then about 10 pairs. The users of the application have to be able to edit these key/value pairs. Right now I'm looking at storing the data in a HashMap for each instance of the domain class. While I think this will work it means I will have to write a fair amount of custom code for editing, updating, and showing these objects instead of using the code generated with grails generate-all. Is there a better way to store and edit the key/value pairs or should I just stick with HashMap?</p>
http://stackoverflow.com/questions/1510977/grails-multi-column-indexes1Grails multi column indexesKimble2009-10-02T17:57:30Z2009-10-10T23:37:19Z
<p>Can someone explain how to define multi column indexes in Grails? The documentation is at best sparse.</p>
<p>This for example does not seem to work at all:
<a href="http://grails.org/GORM+Index+definitions" rel="nofollow">http://grails.org/GORM+Index+definitions</a></p>
<p>I've had some luck with this, but the results seems random at best. Definitions that works in one domain class does not when applied to another (with different names of course).
<a href="http://www.grails.org/doc/1.1/guide/single.html#5.5.2.6%20Database%20Indices" rel="nofollow">http://www.grails.org/doc/1.1/guide/single.html#5.5.2.6%20Database%20Indices</a></p>
<p>Some working examples and explanations would be highly appreciated! </p>
http://stackoverflow.com/questions/1548948/in-grails-how-do-i-declare-a-sql-server-schema-name-for-a-domain-class1In Grails, how do I declare a SQL Server Schema name for a Domain Class?Amir Khawaja2009-10-10T20:11:11Z2009-10-10T20:20:54Z
<p>I have recently started reading up on Grails and would like to use SQL Server security schemas to group tables generated by GORM. However, I cannot seem to find a reference explaining how to perform this task. I am new to Hibernate as well and would like to know if this is possible. Thank you.</p>
http://stackoverflow.com/questions/1534113/hibernate-transaction-boundaries1Hibernate transaction boundariesDon2009-10-07T20:50:14Z2009-10-07T20:52:39Z
<p>Hi,</p>
<p>I'm using Hibernate (in a Grails app) and the transactional boundaries are service methods, i.e. every time a service method is called a transaction starts, and every time a service call completes the transaction is either rolled back or committed.</p>
<p>If one of the database operations causes a database trigger to fire, and this trigger makes changes to persistent data, will these changes be rolled back or committed when the service call completes, or are changes made by the trigger "outside" the transaction?</p>
<p>Thanks,
Don</p>
http://stackoverflow.com/questions/1468208/select-all-events-from-a-month-in-grails0Select all events from a month in grailsErik Itland2009-09-23T19:52:26Z2009-09-25T06:24:56Z
<p>I am new to groovy/grails, and I'm trying to to do a criteria search that finds all posts for a month, basically like this:</p>
<pre><code>def getUserMinutesForYear(User user, Date date){
Date firstDate = new GregorianCalendar(date.year, Calendar.JANUARY, 1, 0, 0, 0).time
Date lastDate = new GregorianCalendar(date.year, Calendar.DECEMBER, 31, 23, 59, 59).time
def c = JobRegistration.createCriteria()
def minutes = c.get {
and{
eq("user.id", user.id)
between("job.happening", firstDate, lastDate)
}
projections {
sum("minutesWorked")
}
}
return minutes
}
</code></pre>
<p>The domain classes are </p>
<pre><code> class Job {
String title
String description
Date happening
static hasMany = [registrations:JobRegistration]
}
class User {
static hasMany = [authorities: Role, registrations: JobRegistration]
static belongsTo = Role
String username
}
class JobRegistration {
Job job
User user
Integer minutesWorked
static belongsTo = [user:User,job:Job]
static constraints = {
user(blank: false)
job(blank:false)
minutesWorked(nullable :true)
}
String toString(){
return user.userRealName
}
}
</code></pre>
<p>Now, why do I get this exception?</p>
<blockquote>
<p>org.codehaus.groovy.runtime.InvokerInvocationException: org.hibernate.QueryException: could not resolve property: job.happening of: JobRegistration</p>
</blockquote>
http://stackoverflow.com/questions/1461857/how-to-override-addto-and-removefrom-gorm-grails-methods0How to override addTo* and RemoveFrom* GORM/Grails methods ?fabien74742009-09-22T18:38:00Z2009-09-22T22:47:27Z
<p>I tried to override the dynamic method addTo* provided by Grails/GORM but it doesn't seem to work.</p>
<p>Here is the code :</p>
<pre><code>class Match {
static hasMany = [players: Player, matchPlayers: MatchPlayer]
void addToPlayers(Player player) {
if (players.add(player)) {
MatchPlayer matchPlayer = new MatchPlayer(match: this, player: player)
matchPlayers.add(matchPlayer)
}
}
}
ma = new Match().save()
ma.addToPlayers(player1)
</code></pre>
<p>The issue is that when calling addToPlayers I got the following exception:</p>
<pre><code>java.lang.NullPointerException: Cannot invoke method add() on null object
</code></pre>
<p>So basically it seems that I have to initialize myself the collection 'players'.</p>
<p>Well, before doing that, I would like to have some insights on GORM mechanism :</p>
<p>1 - What is the default implementation for collections in GORM (I know that it is an implementation of java.util.Set but which one?)</p>
<p>2 - Is it the right thing to do (by overriding the addToPlayers method) ? (My only need is to create/remove an object MatchPlayer each time a player is added/removed in the match instance). If yes, why do I have an exception? Do you have a better design for this?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/692754/public-class-foo-v-s-class-foo-in-groovy-domain-classes1"public class Foo" v.s. "class Foo" in Groovy domain classesknorv2009-03-28T13:18:04Z2009-09-22T19:06:26Z
<p>The following Groovy code creates a GORM-persisted domain class called Foo when written to grails-app/domain/Foo.groovy:</p>
<pre><code>class Foo {
String someField
}
</code></pre>
<p>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.):</p>
<pre><code>public class Foo {
String someField
}
</code></pre>
<p>I'm running the latest stable release of Grails (1.1).</p>
<p>Question: <b>Is this a bug or is it the expected behaviour? Why?</b></p>
<p><b>Update #1:</b> 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!</p>
http://stackoverflow.com/questions/1436144/eager-loading-queries-with-gorm-hibernate1eager-loading queries with GORM/HibernateDon2009-09-17T00:19:14Z2009-09-22T11:01:48Z
<p>Hi,</p>
<p>My Grails app has the following domain objects</p>
<pre><code>class ProductType {
String name
static hasMany = [attributes: Attribute]
}
class Attribute {
String name
static belongsTo = [productType: ProductType]
}
</code></pre>
<p>My DB has 7 <code>ProductType</code>s and each of those has 3 <code>Attribute</code>s. If I execute the query:</p>
<pre><code>def results = ProductType.withCriteria {
fetchMode("attributes", org.hibernate.FetchMode.EAGER)
}
</code></pre>
<p>I expect 7 instances of <code>ProductType</code> to be returned, but in fact I get 21 (7 x 3). I understand that if I were to execute an equivalent SQL query to the above, the result set would have 21 rows</p>
<pre><code>prod1 | attr1
prod1 | attr2
prod1 | attr3
..... | .....
..... | .....
prod7 | attr1
prod7 | attr2
prod7 | attr3
-------------
Total 21
</code></pre>
<p>But I thought that when I retrieve these results via Hibernate/GORM I should get something more like:</p>
<pre><code>prod1 | attr1, attr2, attr3
..... | ...................
..... | ...................
prod7 | attr1, attr2, attr3
---------------------------
Total 7
</code></pre>
<p>Incidentally, if I remove the eager-loading from the query above, I get 7 <code>ProductType</code>s as expected. What am I missing?</p>
http://stackoverflow.com/questions/1429848/gorm-hibernate-query0GORM Hibernate queryDon2009-09-15T21:59:45Z2009-09-19T04:15:08Z
<p>Hi,</p>
<p>I have the following Grails domain objects</p>
<pre><code>class ProductType {
String name
static hasMany = [attributes: Attribute]
}
class Attribute {
Boolean mandatory = false
Integer seq
static belongsTo = [productType: ProductType]
}
</code></pre>
<p>I would like to get all <code>ProductType</code>s and their mandatory <code>Attribute</code>s. Furthermore, I'd like the selected <code>Attribute</code>s to be eagerly loaded and sorted by the <code>seq</code> property. I've tried all kinds of HQL and Criteria queries, but can't seem to figure it out.</p>
http://stackoverflow.com/questions/1440166/finding-the-first-match-alternative-to-domainclass-findall00Finding the first match - alternative to DomainClass.findAll()[0]knorv2009-09-17T17:15:59Z2009-09-17T22:26:32Z
<p>Is there a shorter/cleaner way than <code>DomainClass.findAll()[0]</code> to retrieve the first domain object in the set of domain objects that would normally be retrieved by <code>findAll()</code>? </p>
<p>Ideally, I'd like <code>DomainClass.find()</code> but such a finder does not exist.</p>
http://stackoverflow.com/questions/1368025/grails-and-hibernates-lazy-initialization-exception0Grails and Hibernate's Lazy Initialization ExceptionAzder2009-09-02T14:24:07Z2009-09-09T08:46:37Z
<p>Where are the most common places where you've gotten an <code>org.hibernate.LazyInitializationException</code> in Grails, what was the cause and how did you solve it ?</p>
<p>I think this one exception comes up a lot for novice, so if you'd provide more examples, it would be great.</p>