2

ここにいくつかのエンティティがあります:

@Entity
public class Forest {
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private long id;


    public Forest() {
    }

    public long getId() {
        return id;
    }

    public void setId(long id) {
        this.id = id;
    }
}

テーブルフォレストに要素を挿入したい:

public class Main {
private static EntityManagerFactory emf = 
       Persistence.createEntityManagerFactory("server");

    public static void main(String[] args) {

        EntityManager em = emf.createEntityManager();
        EntityTransaction trx = em.getTransaction();
        Forest forest = new Forest();


        trx.begin();
        em.persist(forest);
        trx.commit();

    }
}

スローされた例外:

Exception in thread "main" javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: Table 'server.forest' doesn't exist

Caused by: org.hibernate.exception.SQLGrammarException: Table 'server.forest' doesn't exist

設定を含む私のpersistence.xmlファイル:

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
   <persistence-unit name="server">
      <provider>org.hibernate.ejb.HibernatePersistence</provider>

      <properties>
          <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
          <property name="javax.persistence.jdbc.url"               value="jdbc:mysql://localhost:3306/server"/>
          <property name="javax.persistence.jdbc.user" value="root" />
          <property name="javax.persistence.jdbc.password" value="root" />
          <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
          <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
      </properties>
   </persistence-unit>
</persistence>

@GeneratedValue(strategy = GenerationType.AUTO)を削除し、フォレストのIDを設定したとき:forest.setID(1)、例外はなく、テーブルが生成されました。そのため、idの自動生成が機能せず、理由がわかりません。

4

1 に答える 1

4

構成によるorg.hibernate.dialect.HSQLDialectと、MySQLデータベースで使用されます。HSQLの代わりにMySQL方言を使用すると役立つ可能性があります。InnoDBが使用されている可能性があります。使用されている場合は、MySQL5InnoDBDialectが最適です。

于 2013-02-15T19:49:16.407 に答える