数据库中插入英文数字正常,插入中文错误解决方案

一个发布公告的功能

在其他电脑上面运行的好好的。到了另外一台上就出问题了,

报如下错误

[http-8080-2] ERROR org.hibernate.AssertionFailure - an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session)
org.hibernate.AssertionFailure: null id in
 (don't flush the Session after an exception occurs)
分别用英文和中文插入,发现英文能行,

插入中文总是失败,于是怀疑是否数据库编码问题了,在Navicat上面直接保存中文,被拒绝保存。用下面语句查看mysql的编码格式

查看mysql的编码格式  show variables like 'character_set_%';

果然,显示的都是latin1编码。问题就好解决了。

在C盘,我装MYSQL在这里,找到C:\Program Files\MySQL\MySQL Server 5.5\bin

下面的MySQLInstanceConfig.exe,点击运行,然后一路next,直到选择编码的时候:如图

数据库中插入英文数字正常,插入中文错误解决方案

记得在第3个上面打钩!然后选择utf-8编码

然后继续一路next,重新配置以后,可以插入中文了。

你可能感兴趣的:(数据库中插入英文数字正常,插入中文错误解决方案)