I am having problem understanding how to implement a 1-to-many unowned relationship on app engine. I am currently getting an exception that I trace back to an empty list.
@Entity
public class Inventory extends DatastoreObject {
/**
* List of all inventory items in this object.
*/
@Unowned
//@OneToMany(cascade = CascadeType.ALL)
private List<InventoryItem> inventoryItems;
}
Here is the exception I am getting when trying to persist the entities.
java.lang.IllegalArgumentException: A collection of values is required.
at com.google.appengine.api.datastore.DataTypeUtils.checkSupportedValue(DataTypeUtils.java:157)
at com.google.appengine.api.datastore.Query$FilterPredicate.<init>(Query.java:847)
at com.google.appengine.api.datastore.Query$FilterOperator.of(Query.java:77)
at com.google.appengine.api.datastore.Query.addFilter(Query.java:336)
at com.google.appengine.datanucleus.scostore.FKListStore.getChildrenByKeys(FKListStore.java:383)
at com.google.appengine.datanucleus.scostore.FKListStore.listIterator(FKListStore.java:360)
It appears that datanucleus is using a Filter IN query to fetch the InventoryItem child entities. The list is originally empty and contains no keys so this is breaking my retrieval.
Here is an exert from my persistence.xml file.
<exclude-unlisted-classes/>
<properties>
<property name="datanucleus.NontransactionalRead" value="true"/>
<property name="datanucleus.NontransactionalWrite" value="true"/>
<property name="datanucleus.ConnectionURL" value="appengine"/>
<property name="datanucleus.singletonEMFForName" value="true"/>
<property name="datanucleus.appengine.relationDefault" value="unowned" />
<property name="datanucleus.appengine.datastoreEnableXGTransactions" value="true"/>
</properties>