无效的语法错误“type= MyISAM”在由 Hibernate 生成的 DDL 中

2022-08-31 17:43:02

我的 Java 代码出现此错误

   Caused by :`com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException`: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB` server version for the right syntax to use near 'type = `MyISAM`' at line 1

这是通过休眠传递的查询:

Hibernate: create table EMPLOYEE (emp_id integer not null, FNAME varchar(255), LNAME varchar(255), primary key (emp_id)) type=MyISAM

我已经查看了与此错误相关的所有问题。但是在所有这些问题中,用户本身正在传递查询“”,以便他们可以将“”更改为“”,但是在这里休眠负责创建表,所以我不明白错误在哪里,以及我如何解决它。type = MyISAMtypeengine

这是我的配置文件:

<hibernate-configuration>
 <session-factory >
 <property name="hibernate.hbm2ddl.auto">create</property>
  <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  <property name="hibernate.connection.url">jdbc:mysql://localhost/servletcheck</property>
  <property name="hibernate.connection.username">root</property>
  <property name="hibernate.connection.password"> </property>
  <property name="hibernate.dialect"> org.hibernate.dialect.MySQLDialect</property>
  <property name="hibernate.show_sql">true</property>
  <mapping resource="Employee.hbm.xml"/>
 </session-factory>
</hibernate-configuration>

这是我的映射文件:

<hibernate-mapping>
    <class name="first.Employee" table="EMPLOYEE">
        <id name="id" type="int">
            <column name="emp_id" />
            <generator class="assigned" />
        </id>
        <property name="fname" type="java.lang.String">
            <column name="FNAME" />
        </property>
        <property name="lname" type="java.lang.String">
            <column name="LNAME" />
        </property>
    </class>
</hibernate-mapping>

这是我的类文件:

public class StoreData {
    public static void main(String[] args) {
        Configuration cfg=new Configuration();
        cfg.configure("hibernate.cfg.xml");
        SessionFactory factory=cfg.buildSessionFactory();
        Session session=factory.openSession();
        org.hibernate.Transaction t=session.beginTransaction();
        Employee e=new Employee();
        e.setId(1);
        e.setFname("yogesh");
        e.setLname("Meghnani");
        session.persist(e);
        t.commit();

    }
}

答案 1

问题是 - 在Hibernate 5.x及更早版本中 - 方言适用于MySQL 4.x或更早版本。此方言生成的片段在 MySQL 4.0 中已弃用,在 5.5 中已删除。org.hibernate.dialect.MySQLDialectTYPE=MYISAM

鉴于您使用MariaDB,您需要使用(取决于MariaDB的版本和Hibernate的版本)以下之一:

  • org.hibernate.dialect.MariaDBDialect
  • org.hibernate.dialect.MariaDB53Dialect

如果您使用的是MySQL,或者MariaDB的上述两种方言在您的Hibernate版本中不存在:

  • org.hibernate.dialect.MySQL5Dialect
  • org.hibernate.dialect.MySQL55Dialect
  • org.hibernate.dialect.MySQL57Dialect

答案 2

这是一个与方言相关的问题,而不是你可以去.它会愉快地工作。org.hibernate.dialect.MySQLDialectorg.hibernate.dialect.MySQL5Dialect


推荐