org.hibernate.TypeMismatchException: Provided id of the wrong type for class cn.itcast.entity.User.
Posted 寒潭渡鹤影
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了org.hibernate.TypeMismatchException: Provided id of the wrong type for class cn.itcast.entity.User. 相关的知识,希望对你有一定的参考价值。
出现org.hibernate.TypeMismatchException: Provided id of the wrong type for class cn.itcast.entity.User. Expected: class java.lang.String, got class java.lang.Integer at org.hibernate.event.internal.DefaultLoadEventListener.checkIdClass(DefaultLoadEventListen
这样的错误,可能是bean中的数据类型和hbm.xml中指定的主键生成策略不一致。
比如我在bean中,将uid写出字符串,而在hbm.xml中使用的是<generator class="native"/>这样就报错了。
以上是关于org.hibernate.TypeMismatchException: Provided id of the wrong type for class cn.itcast.entity.User. 的主要内容,如果未能解决你的问题,请参考以下文章