我有以下代码应该将地图保存到数据库。问题是,虽然它保存了实体及其关系,但它默默地丢弃了映射键值——没有错误,什么都没有,数据库只是得到 NULL。
代码:
package com.tester;
import java.util.HashMap;
import java.util.Map;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.ManyToOne;
import javax.persistence.MapKey;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import lombok.Data;
import lombok.ToString;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;
public class App {
@Entity
@Table (name = "test_items")
@Data
@ToString (exclude = "parent")
public static class Item {
@Id @GeneratedValue
private Long id;
int slot;
@ManyToOne
private Item parent;
@OneToMany (cascade = CascadeType.ALL, mappedBy = "parent")
@MapKey (name = "slot")
Map<Integer, Item> children;
}
private static SessionFactory buildSessionFactory() {
try {
return new AnnotationConfiguration().configure().buildSessionFactory();
} catch (final Throwable ex) {
System.err.println("Initial SessionFactory creation failed." + ex);
throw new ExceptionInInitializerError(ex);
}
}
public static void main(final String[] args) {
final SessionFactory sf = buildSessionFactory();
final Session session = sf.openSession();
session.beginTransaction();
final Item item100 = new Item();
final Item item110 = new Item();
session.save(item100);
session.save(item110);
session.flush();
item110.setParent(item100);
final HashMap<Integer, Item> children = new HashMap<Integer, Item>();
children.put(3, item110);
item100.setChildren(children);
session.saveOrUpdate(item100);
session.saveOrUpdate(item110);
session.getTransaction().commit();
session.close();
}
}
上述之后的预期数据库结果:
id slot parent_id
1 0 NULL
2 3 1 [->]
实际结果:
id slot parent_id
1 0 NULL
2 0 1 [->]
如您所见,即使 Hibernate 为键创建了一个列,它们也被 NULL 填充,并且来自的信息片段“3”children.put(3, item110);
根本不会持久保存到数据库中。它完全丢失了。
想法?
注意:我也尝试过@MapKeyClass (Integer.class)
,但没有成功。
编辑:有问题的 3 并不意味着引用其他任何内容,也不是对任何其他字段/列的引用。这是一个任意值,在这个特定的上下文中,它应该定义具有多个插槽的容器中的项目的索引。但就我而言,您可以将其替换为“abcdefg”(当然,假设您将 Map 更改为采用 String 而不是 Integer)。