vote up 0 vote down star

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.

Following is my development environment:

  • Windows XP Professional
  • App Engine SDK 1.2.2
  • Grails 1.1.1
  • Plugins used: app-engine 0.8.3, gorm-jpa 0.5

The source code located at:

The complete errors stack trace is here:

     [java] Sep 4, 2009 2:08:42 AM com.google.apphosting.utils.jetty.JettyLogger

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.

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

Please advice. See whether you have any idea on what went wrong…

Thanks.

flag

3 Answers

vote up 0 vote down

Looks like the problem is that you don't have a User on the Role since you'll need to specify the mappedBy on the collection I think.

@OneToMany(mappedBy="user",fetch=FetchType.EAGER)
Set<Role> roles

Also you don't really need the join table stuff since you aren't really working with tables in app-engine. In essence the role will exist under the user entity.

Hope that helps :)

link|flag
oh and remember to add a user field to the Role class – Philip Dodds Sep 4 at 4:38
Thanks for fast response and helpful advice. I try with your advice by refer to java2s.com/Code/Java/… But I face error below while access to role/list page. Error Cause: org.datanucleus.exceptions.NucleusUserException: Field com.vobject.grailsfuse.Role.user should be able to provide a reference to its parent but the entity does not have a parent. Did you perhaps try to establish an instance of com.vobject.grailsfuse.Role as the child of an instance of com.vobject.grailsfuse.User after the child had already been persisted? – limcheekin Sep 5 at 9:19
The latest source code located at: rapidshare.com/files/275893205/… – limcheekin Sep 5 at 9:41
vote up 0 vote down

FYI, I had managed to implement one-to-many relationship using "Unowned One-to-Many Relationships", please refer to http://code.google.com/appengine/docs/java/datastore/relationships.html#Unowned%5FRelationships for more information.

Thanks for kindly help so far.

link|flag
vote up 0 vote down

Dear Philip,

I had implemented the outcome above and stark security into a project called grailsfuse that intended to run on google appengine with custom authentication.

You can access the application at URL below:
grailsfuse.appspot.com

The code is developed using App Engine SDK 1.2.5. You can access the URL below for complete source code:
https://vobject.svn.sourceforge.net/svnroot/vobject/grails/grailsfuse/trunk

Plugins used:
app-engine 0.8.3, gorm-jpa 0.5, stark-security 0.4.2

Please take note that after you install gorm-jpa plugin to the project, you need to apply the fix of URL below to ensure the login screen is working properly:
jira.codehaus.org/browse/GRAILSPLUGINS-1366

Working features:
Unowned One-to-Many Relationships between User and Role

Outstanding Issue:
While execute in app-engine, unable to access to appropriate URL (included /index.gsp, **/create, **/update, **/delete, etc) even after login successfully, suspect something wrong with URL redirection.

Any idea for the outstanding issues above?

Thanks.

link|flag

Your Answer

Get an OpenID
or

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