更新多个集合时,hibernate interceptor oncollectionupdate

时间:2016-11-29 13:29:34

标签: hibernate interceptor

以下是班级的例子 class Foo{ List<Bar> firstList = new ArrayList(); List<Bar> secondList = new ArrayList(); }
更新两个列表时,onCollectionUpdate拦截器被调用两次。我的问题是如何在onCollectionUpdate(Object collection,Serializable key)方法中知道哪个集合与哪个Foo参数匹配。

编辑:Foo类还有一个Integer参数,即它的id private Integer id

0 个答案:

没有答案