如何在大型实体类中更新地图?

时间:2016-04-30 02:20:58

标签: java jpa dictionary entity

我有这种情况

public void add(Integer key,Integer val) {
    EntityManager em = ...;
    em.getTransaction().begin();
    BigEntity be = em.find(BigEntity.class,beId); // I want avoid this
    be.getMap().put(key,val);
    em.getTransaction().commit();
}

如何在不获取整个BigEntity的情况下更新地图? 我不能包裹地图,提前谢谢

0 个答案:

没有答案