浏览 2457 次
锁定老帖子 主题:我遇到的两个hibernate异常
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-06-11
最后修改:2009-06-11
问题:Source not found for AttachmentManager$$FastClassByCGLIB$$5f0a3cd1.invoke(int, Object, Object[]) line: not available ReflectiveMethodInvocation: public void com.openjeecms.manager.AttachmentManager.save(com.openjeecms.beans.Attachment); target is of class [com.openjeecms.manager.AttachmentManager] java.lang.NoSuchMethodError: org.hibernate.event.PreInsertEvent.getSource()Lorg/hibernate/event/EventSource; java.lang.reflect.InvocationTargetException 回答:将validator升级到hibernate-validator-4.0.0.Beta1.jar就可以了。 二、 问题: 假定,Parent类有一个Set属性,里面放的是Son。如果查询"from Parent",某个Parent哪怕一个Son都没有,那个Set属性不会为null,而是一个空集合。 这时候如果你Parent newP=new Parent();然后BeanUtils.copyPropertis(newP,origP);最后就会报hibernate异常"Found shared references to a collection"。 注:hibernate在什么时机发现"两个对象共享一个集合"的情况的?我这边的例子是在下一次查询时发现的。 原因: BeanUtils.copyPropertis是浅拷贝,导致这两个对象引用的Set是同一个Set,这在hibernate中是不允许的,参见Hibernate reference第6章的"Two entities may not share a reference to the same collection instance"。 这种问题常见于复制对象时。 如何解决:newP.setSonSet(null); 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2009-08-20
也遇到同样的问题了。为解决
|
|
返回顶楼 | |