首页 > 代码库 > Hibernate插入错误:GenericJDBCException: could not insert:

Hibernate插入错误:GenericJDBCException: could not insert:

参考:

http://blog.csdn.net/woshishui6501/article/details/7563070#reply

http://bbs.csdn.net/topics/240046731

http://blog.chinaunix.net/uid-20556037-id-2810929.html

数据库中一般不能建立user(表名为User)表,将User类改名,重新建立映射,问题就可以解决

当然,还有另一种情况,就是类中id类型错误,要设置为Integer型才可以设置自动增长,否则也会出现插入错误。

数据类型不正确也会出现错误,例如:

hibernate自动见表会采用数据库的默认编码,如果默认编码不支持中文的话,当插入数据时仍然会报出异常。

hibernate自动见表参考:

http://blog.csdn.net/jialinqiang/article/details/8665212

In a word,,数据库中表的结构和类不对应。