Re: [appengine-java] GAE with JPA and multiple jars

2011-01-31 Thread JT
Can we see your persistence.xml? On Jan 31, 2011 4:35 PM, "Thomas" wrote: > I try to create a GAE webapp that is using a "model" jar where i have my JPA > entity classes. > > My war file includes the model.jar in the WEB-INF/lib directory > > My entity class is like this: > > package com.example.m

[appengine-java] GAE with JPA and multiple jars

2011-01-31 Thread Thomas
I try to create a GAE webapp that is using a "model" jar where i have my JPA entity classes. My war file includes the model.jar in the WEB-INF/lib directory My entity class is like this: package com.example.model; import java.io.Serializable; import com.google.appengine.api.datastore.Key;