关于 org.hibernate.WrongClassException 错误的解决!
首先看log(中间的null有可能是数字),说明在保存时出现子类id不匹配的问题。
Object with id: null was not of the specified subclass: org.appfuse.model.User (class of the given object did not match class of persistent copy); nested exception is org.hibernate.WrongClassException: Object with id: null was not of the specified subclass: org.appfuse.model.User (class of the given object did not match class of persistent copy)
问题很奇怪,同样的代码在以往是有效的。由于本人比较懒于是乎就查了google,发现是与子类映射有关?
详细描述大家可以参考网络上面的,这里我只说解决方法。
简单讲,问题时出现在与子类相关的映射中:
比如 User 实体有两个子类 Employee,Employer(举例),
我们直接修改 user 并保存于是出现了上面的异常,但同样的代码却可以保存 Employee和Employer实体,原因是hibernate不能确定其中一个这个实体子类。于是将原来的代码加上:
BeanUtils.copyProperties(user, employee);
直接copy一个Employee实体出来以确定使用哪个子类,于是乎现在保存就行了。
原则上就是:既然hibernate无法确认子类那我们就帮帮他确认好了。
原因不分析了,这不是俺的强项。呵呵~~
另外,如果哪位大侠有高见麻烦留个言吧,以便在下可以学习一下。多有谢过啦~~~!
还有就是如果页面中出现了重复的域也有可能导致问题,这个需要仔细检查页面。