web-dev-qa-db-ja.com

org.hibernate.exception.SQLGrammarException:[com.sample.Person]を挿入できませんでした

私が見つけたHibernateの小さな作業サンプルをセットアップしようとしています here しかし、コードを実行すると、次のエラーが発生します

Exception in thread "main" org.hibernate.exception.SQLGrammarException: could not insert: [com.sample.Person]
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.Java:92)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.Java:66)
at org.hibernate.id.insert.AbstractReturningDelegate.performInsert(AbstractReturningDelegate.Java:64)
at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.Java:2345)
at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.Java:2852)
at org.hibernate.action.EntityIdentityInsertAction.execute(EntityIdentityInsertAction.Java:71)
at org.hibernate.engine.ActionQueue.execute(ActionQueue.Java:273)
at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.Java:320)
at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.Java:203)
at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.Java:129)
at .....


Caused by: org.postgresql.util.PSQLException: ERROR: relation "person" does not exist
Position: 13
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.Java:2102)
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.Java:1835)
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.Java:257)
at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.Java:500)
at org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.Java:388)
at org.postgresql.jdbc2.AbstractJdbc2Statement.executeUpdate(AbstractJdbc2Statement.Java:334)
at org.hibernate.id.IdentityGenerator$GetGeneratedKeysDelegate.executeAndExtract(IdentityGenerator.Java:94)
at org.hibernate.id.insert.AbstractReturningDelegate.performInsert(AbstractReturningDelegate.Java:57)
... 23 more

しかし、データベースにはpersonという名前のテーブルが既にあり、ここに変更したhibernate.cfg.xmlがあります。

    <!-- hibernate dialect -->
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>


    <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
    <property name="hibernate.connection.url">jdbc:postgresql://localhost/testDB</property>
    <property name="hibernate.connection.username">postgres</property>
    <property name="hibernate.connection.password"></property>
    <property name="hibernate.show.sql" ></property> 
    <property name="transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>

    <!-- Automatic schema creation (begin) === -->
    <property name="hibernate.hbm2ddl.auto">create</property>


    <!-- Simple memory-only cache -->
    <property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>

    <!-- Enable Hibernate's automatic session context management -->
    <property name="current_session_context_class">thread</property>

    <!-- ############################################ -->
    <!-- # mapping files with external dependencies # -->
    <!-- ############################################ -->

    <mapping resource="com/sample/Person.hbm.xml" />

</session-factory>

これが私のHibernateでの最初の試みであるため、誰かがImが間違っていることを指摘できれば素晴らしいと思います。ありがとう!

編集:Person.hbm.xml

<class name="com.sample.Person" table="person">

    <id name="id" column="ID">
        <generator class="native" />
    </id>

    <property name="name">
        <column name="NAME" length="16" not-null="true" />
    </property>

    <property name="surname">
        <column name="SURNAME" length="16" not-null="true" />
    </property>

    <property name="address">
        <column name="ADDRESS" length="16" not-null="true" />
    </property>

</class>

EDIT-II:ログファイル(Postgresql.log)の内容

 2012-02-13 09:23:25 IST LOG:  database system was shut down at 2012-02-10 18:14:57 IST
 2012-02-13 09:23:25 IST FATAL:  the database system is starting up
 2012-02-13 09:23:33 IST LOG:  database system is ready to accept connections
 2012-02-13 09:23:38 IST LOG:  autovacuum launcher started
 2012-02-13 09:46:01 IST ERROR:  syntax error at or near "auto_increment" at character 41
    2012-02-13 09:46:01 IST STATEMENT:  create table person (ID bigint not null         auto_increment, NAME varchar(16) not null, SURNAME varchar(16) not null, ADDRESS varchar(16) not null, primary key (ID)) type=InnoDB
 2012-02-13 09:46:01 IST ERROR:  relation "person" does not exist at character 13
2012-02-13 09:46:01 IST STATEMENT:  insert into person (NAME, SURNAME, ADDRESS) values   ($1, $2, $3) RETURNING *
2012-02-13 09:46:01 IST LOG:  could not receive data from client: No connection could be made because the target machine actively refused it.


2012-02-13 09:46:01 IST LOG:  unexpected EOF on client connection
2012-02-13 09:48:15 IST ERROR:  syntax error at or near "auto_increment" at character 41
2012-02-13 09:48:15 IST STATEMENT:  create table person (ID bigint not null auto_increment, NAME varchar(16) not null, SURNAME varchar(16) not null, ADDRESS varchar(16) not null, primary key (ID)) type=InnoDB
2012-02-13 09:48:15 IST ERROR:  relation "person" does not exist at character 13
2012-02-13 09:48:15 IST STATEMENT:  insert into person (NAME, SURNAME, ADDRESS) values ($1, $2, $3) RETURNING *
 2012-02-13 09:48:15 IST LOG:  could not receive data from client: No connection could be made because the target machine actively refused it.


2012-02-13 09:48:15 IST LOG:  unexpected EOF on client connection

[〜#〜] update [〜#〜]:変なことに気付いただけで、DBにリレーションを作成してから、このコードを実行します、このコードを実行すると、テーブルが削除されることがわかります。なぜこれが起こるのか?

6
seeker

Hibernate.cfg.xmlの次のプロパティを変更してエラーを解決しました

  <property name="hibernate.hbm2ddl.auto">validate</property>

以前は、プログラムを実行するたびにテーブルが削除されていましたが、現在は削除されていません。Hibernateはスキーマを検証するだけで、スキーマの変更に影響を与えないためです。

9
seeker

例外によると、Hibernateはテーブル "person"に書き込みたいのですが、hbm.xmlでテーブル "Person"があると定義していますが、データベーススキーマに正しいテーブルが存在することを確認しますか?

4
quaylar

注意:

  1. クラス名と同じテーブルを作成する場合、Person.hbm.xml(........)でテーブル名を指定する必要はありません。フィールドにも適用できます。

  2. それぞれのデータベースに「person」テーブルを作成するときは、Person.hbm.xmlで指定したFILEDS名が、上記のエラーが発生しない限り、テーブルCOLUMNS名と一致する必要があります。

3
Manjunath

私の場合の問題は、データベース名が正しくないことでした。
以下のようにフィールドで正しいデータベース名を参照することで問題を解決しました

<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/myDatabase</property>
1
Tarun

hibernate.cfg.xmlの次のプロパティを変更してエラーを解決しました

<property name="hibernate.hbm2ddl.auto">validate</property>

以前は、プログラムを実行するたびにテーブルが削除されていましたが、現在は削除されていません。Hibernateはスキーマを検証するだけであり、スキーマへの変更には影響しません。

私の知る限り、検証から更新に変更することもできます。例:

<property name="hibernate.hbm2ddl.auto">update</property>
0
Secondo

org.hibernate.exception.SQLGrammarExceptionとはどういう意味ですか?

データベースサーバーに送信されたSQLが無効であることを示すJDBCExceptionの実装(構文エラー、無効なオブジェクト参照など)。

私の言葉では、hibernate.cfg.xml構成ファイルの中にGrammarのような間違いがあります。

以下の例のように、スキーマ定義プロパティ名を誤って書き込むと発生します。

<property name="hibernate.connection.hbm2ddl.auto">create</property>

これは次のようになるはずです:

<property name="hibernate.hbm2ddl.auto">create</property>
0
ArifMustafa

構成ファイルの接続URLに正しいデータベース名を入力してみてください。 POJOクラスファイルの実行中に同じエラーが発生したため、これで解決しました。

0
amit yadav

データベースの文字セットを変更してこのエラーを解決しました。古いデータベースの文字セットはcp1252であり、utf-8に変換します

0
John Trump

間違ったデータベースに接続しているようです。確かに "jdbc:postgresql://localhost/testDB"は実際のデータソースに接続しますか?

通常、それらは"jdbc://hostname/databasename".の形式です。Postgresqlログファイルを調べます。

0
Shashank Kadne