码迷,mamicode.com
首页 > 数据库 > 详细

Hibernate连接MySQL数据库乱码相关问题

时间:2014-10-29 23:47:25      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   使用   sp   文件   数据   on   问题   

1、查看MySQL字符编码

  >show variables like ‘character%‘; #执行编码显示

  其中character_set_client,character_set_results,character_set_connection三个运行变量是造成乱码的关键

2、修改MySQL编码格式为UTF8

  编辑my.ini,(注意:不是utf-8,也要注意大小写)

  找到客户端配置[client] 在下面添加

  ### 默认字符集为utf8

  default-character-set=utf8

  在找到[mysqld] 添加

  ### 默认字符集为utf8

  default-character-set=utf8

  ### (设定连接mysql数据库时使用utf8编码,以让mysql数据库为utf8运行)

  init_connect=‘SET NAMES utf8‘

  修改好后,重新启动mysql 即可,查询一下show variables like ‘character%‘;

3、同时创建hibernate数据库时需要显示设置数据库的编码方式为utf8。示例:

  create database daycode default charset=utf8;

4、做完这两步还是不行,需要修改hibernate的配置文件hibernate.cfg.xml,在配置文件配置hibernate.connection.url属性。示例:

  <property name="hibernate.connection.url">
          <![CDATA[jdbc:mysql://localhost:3306/daycode?useUnicode=true&characterEncoding=utf8]]>
  </property>

注意:此字符串不能写为jdbc:mysql://localhost:3306/daycode?useUnicode=true&characterEncoding=utf8,不然会出现编译错误,错误提示为将&连接符改为;。

设置这些之后乱码问题就解决了。

Hibernate连接MySQL数据库乱码相关问题

标签:io   os   ar   使用   sp   文件   数据   on   问题   

原文地址:http://www.cnblogs.com/dolphi/p/4060560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!