`

org.hibernate.WrongClassException 错误解决

阅读更多

关于 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无法确认子类那我们就帮帮他确认好了。

 

原因不分析了,这不是俺的强项。呵呵~~

 

另外,如果哪位大侠有高见麻烦留个言吧,以便在下可以学习一下。多有谢过啦~~~!

 

还有就是如果页面中出现了重复的域也有可能导致问题,这个需要仔细检查页面。

分享到:
评论
2 楼 afreon 2017-03-08  
http://blog.yoodb.com/yoodb/article/detail/1266  解决方案这里。
1 楼 Jasper_Success 2011-09-17  
BeanUtils.copyProperties(user, employee); 
这一句加在哪啊?
谢谢

相关推荐

Global site tag (gtag.js) - Google Analytics