我有这种情况
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的情况下更新地图? 我不能包裹地图,提前谢谢