我有3张桌子:
在java上我有一个像这个例子的代码:
EntityManager em = getEntityManager();
person.setPropertyList(对propertyList); property.setPersonList(personList);
for (...) {
//
// <-no problem with these lines there are only numeric operations
//
em.merge(property);
}
em.merge(person);
然后我收到消息(在person_x_properties [xxx,yyy]重复输入)。
我一直在寻找解决方案,我有一个可能:
它有效,但我不喜欢它,因为我需要未来两个对象中的信息。
任何人都可以给我一个指导吗?
谢谢!