码迷,mamicode.com
首页 > Web开发 > 详细

hibernate建表默认为UTF-8编码

时间:2018-04-27 15:41:30      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:ops   自动   pes   get   hibernate   coding   mys   自动建表   update   

一、问题:

hibernate自动建表的编码应该是数据默认的编码格式,一般也不是utf-8。所以想要建表默认的编码是UTF-8,应该怎么做呢?

二、解决方法:

拿mysql举例:

(一)、修改hibernate建表的方言

1、一般情况我们使用的mysql方言为:org.hibernate.dialect.MySQL5Dialect

默认返回的是

@Override  
    public String getTableTypeString() {  
        return " ENGINE=InnoDB";  
    }  

2、重写MySQL5InnoDBDialect类,覆盖getTableTypeString方法

package com.lqy.spring.hibernate.mysql;  
  
import org.hibernate.dialect.MySQL5InnoDBDialect;  
  
public class MySQL5DialectUTF8 extends MySQL5InnoDBDialect{  
  
    @Override  
    public String getTableTypeString() {  
        return " ENGINE=InnoDB DEFAULT CHARSET=utf8";    
    }  
}  

3、方言配置使用我们重写的类,配置如下:

 

(1)Jpa数据库连接配置:

把默认的配置

<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect" />  

修改成

<property name="hibernate.dialect" value="com.lqy.spring.hibernate.mysql.MySQL5DialectUTF8" />  

(2)spring整合hibernate配置:

<prop key="hibernate.dialect">com.lqy.spring.hibernate.mysql.MySQL5DialectUTF8</prop>  
<property name="jpaProperties">  
            <props>  
              
                  
                <!-- 自动建表类型 validate|create|create-drop|update -->  
                <prop key="hibernate.hbm2ddl.auto">update</prop>  
                <!-- 是否显示SQL -->  
                <prop key="hibernate.show_sql">false</prop>  
                <!-- 显示SQL是否格式化 -->  
                <prop key="hibernate.format_sql">false</prop>  
                <prop key="hibernate.dialect">com.lqy.spring.hibernate.mysql.MySQL5DialectUTF8</prop>  
            </props>  
        </property>  

4、修改数据连接Url

jdbc.url=jdbc:mysql://192.168.1.11:3306/db?useUnicode=true&amp;characterEncoding=UTF-8

 

hibernate建表默认为UTF-8编码

标签:ops   自动   pes   get   hibernate   coding   mys   自动建表   update   

原文地址:https://www.cnblogs.com/liaojie970/p/8962436.html

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