mysql数据库方言的选择问题

1.问题引导

    在开发项目的时候,我接受到一个用spring+hibernate+springMVC的项目demo,hibernate用的jpa规范,我配置hibernate.hbm2ddl.auto=create,这样程序本应该一运行就创建表,然而当我,向数据库中添加数据的时候就报错:

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'test.userinfo' doesn't exist

说我操作的表不存在。然后,我设置hibernate.show_sql=true,查看日志发现有创建数据库表的语句


Hibernate: 
    drop table if exists userinfo
Hibernate: 
    create table userinfo (
        id integer not null auto_increment unique,
        address varchar(255),
        age integer,
        birthday datetime,
        name varchar(255),
        password varchar(255),
        primary key (id)
    ) type=InnoDB
2017-07-05 21:31:59,052 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] - Unsuccessful: create table userinfo (id integer not null auto_increment unique, address varchar(255), age integer, birthday datetime, name varchar(255), password varchar(255), primary key (id)) type=InnoDB>
2017-07-05 21:31:59,053 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] - <You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'type=InnoDB' at line 9>
七月 05, 2017 9:31:59 下午 org.apache.catalina.core.ApplicationContext log

仔细查看日志发现,说我们创建数据库的语句有问题

然后,我把数库方言改为  hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect

2.mysql不同版本对应的方言


MySQL 5.5及以上版本  :  org.hibernate.dialect.MySQL5InnoDBDialect  这个是网上人说的,我安装的就是mysql 5.5,开始方言用的org.hibernate.dialect.MySQLInnoDBDialect老报错,改了之后就正常了,实践证明这是正确的。


MySQL 5.5以下的

org.hibernate.dialect.MySQLInnoDBDialect,这个是推测吧,我没有试过


org.hibernate.dialect.MySQLDialect 这个方言好像通用的



你可能感兴趣的:(hibernate+jpa)