Hibernate创建数据库时,设置默认字符集为utf-8
2017-05-16 本文已影响228人
ChenME
- 修改方言
package com.mm.utils;
import org.hibernate.dialect.MySQL5InnoDBDialect;
ic class MySQL5DialectUTF8 extends MySQL5InnoDBDialect {
@Override
public String getTableTypeString() {
return " ENGINE=InnoDB DEFAULT CHARSET=utf8";
}
}
- 修改数据库连接方式(hibernate.cfg.xml)
<property name="connection.url">jdbc:mysql://localhost:3306/mm_db?useUnicode=true&characterEncoding=UTF-8
</property>
- 修改(hibernate.cfg.xml)配置文件中的方言
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect" />
<!--改为-->
<property name="hibernate.dialect">com.mm.utils.MySQL5DialectUTF8</property>