hibernate.cfg.xml加上属性.
<property name="connection.useUnicode">true</property>
<property name="connection.characterEncoding">UTF-8</property>
mysql 的驱动用3.0.15以上版本的,
加个Filter, 使用UTF-8字符集就可以了,
若使用Spring则写在spring中的sessionFactory里即可。
例如:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools. -->
<hibernate-configuration>
<session-factory>
<property name="connection.username">root</property>
<property name="connection.url">
jdbc:mysql://localhost:3306/hibernate_table
</property>
<property name="dialect">
org.hibernate.dialect.MySQLDialect
</property>
<property name="myeclipse.connection.profile">
mySql hibernatetable
</property>
<property name="connection.password">12345678</property>
<property name="connection.driver_class">
com.mysql.jdbc.Driver
</property>
<property name="connection.useUnicode">true</property>
<property name="connection.characterEncoding">UTF-8</property>
<property name="show_sql">true</property>
<property name="format_sql">true</property>
<mapping resource="cn/com/hibernate/Demo/Guestbook.hbm.xml" />
<mapping resource="cn/com/hibernate/Demo/GMapping.hbm.xml" />
相关文章
- php写入数据到mysql数据库中出现乱码解决方法
- 将mysql数据库设置成utf8编码时插入查询中文乱码终极解决方案
- mysql数据库插入中文以及乱码问题解决(统一设置为utf-8)格式
- 【转】php pdo连接数据库 解决中文乱码问题(wordpress mysql 问号?? ??)
- php pdo连接数据库 解决中文乱码问题
- php写入txt乱码的解决方法
- 急,把DW里的代码复制在文本框里,写入数据库,读出来多了很多个的问题,解决完马上给分.
- 解决python ogr shp字段写入中文乱码的问题
- Orcale 数据库客户端PL/SQL 中文乱码的问题解决方法
- request.getParameter()及解决数据库中文乱码问题——实习第七天