Objectify のエンティティ関係に問題があります。私のアプリケーションは、イベントにさまざまなカテゴリのチケットがあるイベント アプリケーションです。各チケットはユーザーが所有します。Event > TicketType > Ticket のような親子階層があります。したがって、Event は @Parent of Ticket である TicketType の @Parent です。
ここに私のエンティティがあります:
@Entity
public class Event {
...
@Load
private Set<Ref<TicketType>> ticketTypes = new HashSet<Ref<TicketType>>();
...
}
@Entity
public class TicketType {
...
@Parent
private Ref<Event> event;
...
}
@Entity
public class Ticket {
...
@Parent
@Load
private Ref<TicketType> ticketType;
...
}
次のように、トランザクション内でイベントを作成します。
Event ev = ofy().transact(new Work<Event>() {
@Override
public Event run() {
// several statements constructing the event
ev.setXXXX(X);
ofy().save().entity(ev).now();
// Now construct the TicketType entity, then associate it to its parent, Event
TicketType tt1 = new TicketType("normal", 100, 7);
tt1.setEvent(ev);
ofy().save().entity(tt1).now();
return ev;
}
});
返された を使用してev
、次のようにチケットを作成します。
// Generate a VIP ticket
Ticket ticket1 = ev.generateTicket("vip");
// I set the owner with an already saved User entity
ticket1.setOwner(cl);
ofy().save().entity(ticket1).now();
// The user also has a list of all his tickets
cl.addTicket(ticket1);
Event.generateTicket(...) 内で、次のことを行います。
public synchronized Ticket generateTicket(String type) throws IllegalArgumentException {
for (Ref<TicketType> reftt : ticketTypes) {
TicketType tt = reftt.get();
if (tt.getType().equalsIgnoreCase(type)) {
if (tt.getAvailable() > 0) {
Ticket newTicket = new Ticket(RandomGenerator.nextNumber(TICKET_NUMBER_LENGTH), tt);
newTicket.setExpirationDate(getEndDate());
// here I set the parent TicketType entity for this new Ticket
newTicket.setTicketType(tt);
// the number of available tickets of this type is decreased
tt.setAvailable(tt.getAvailable() - 1);
return newTicket;
} else return null;
}
}
throw new IllegalArgumentException("No such type");
}
私の問題は、親子関係Event
がすべてのイベント/チケットタイプのリストを適切に持っているエンティティでのみ尊重されているように見えることです (ticketTypes
フィールドを介して) Set<Ref<TicketType>>
。しかし、TicketType
エンティティにはチケットのリストがありません (tickets
フィールドは null であるため、保存されません)、反対方向では、 のTicketType
親参照Ticket
は null であり、上記の両方のケースで行った割り当てにもかかわらず、のEvent
親参照も同様です。TicketType
私は何を間違っていますか?