web-dev-qa-db-ja.com

Hibernateを使用したSpring Bootは、H2データベースを使用した起動時にドロップ制約エラーを生成します

私はspring-bootを使用しており、(application.propertiesで)そのように構成されたH2データベースを持っています。

spring.datasource.url=jdbc:h2:mem:AZ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect

ログに次のエラーが表示されます。

o.hibernate.jpa.internal.util.LogHelper  : HHH000204: Processing PersistenceUnitInfo [
        name: default
        ...]
org.hibernate.Version                    : HHH000412: Hibernate Core {4.3.5.Final}
org.hibernate.cfg.Environment            : HHH000206: hibernate.properties not found
org.hibernate.cfg.Environment            : HHH000021: Bytecode provider name : javassist
o.hibernate.annotations.common.Version   : HCANN000001: Hibernate Commons Annotations {4.0.4.Final}
org.hibernate.dialect.Dialect            : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
o.h.h.i.ast.ASTQueryTranslatorFactory    : HHH000397: Using ASTQueryTranslatorFactory
org.hibernate.tool.hbm2ddl.SchemaExport  : HHH000227: Running hbm2ddl schema export
org.hibernate.tool.hbm2ddl.SchemaExport  : HHH000389: Unsuccessful: alter table key_request drop constraint FK_53shrbc21c25inskpp1yoxxss if exists
org.hibernate.tool.hbm2ddl.SchemaExport  : Table "KEY_REQUEST" not found; SQL statement:
    alter table key_request drop constraint FK_53shrbc21c25inskpp1yoxxss if exists [42102-178]

Hibernateはこれらをエラーとして報告しますが、H2コンソールにログインして制約を確認すると、問題はないようです。

SELECT TABLE_NAME, INDEX_NAME, COLUMN_NAME, INDEX_TYPE_NAME FROM information_schema.indexes WHERE TABLE_NAME='KEY_REQUEST';
TABLE_NAME    INDEX_NAME                            COLUMN_NAME  INDEX_TYPE_NAME  
KEY_REQUEST   PRIMARY_KEY_F                         REQUEST_ID   PRIMARY KEY
KEY_REQUEST   FK_53SHRBC21C25INSKPP1YOXXSS_INDEX_F  USER_ID      INDEX

実際にhibernateがデータベースを作成する前にこれらの制約を削除しようとしているように見える場合(つまり、hibernateのある種のバグ)。これらのエラーがログを詰まらせるのを回避する方法はありますか、またはどこかで実際の障害を示していますか?

アップデート1

この設定を使用して、アプリケーションに更新のみを強制することを試みます:

spring.jpa.hibernate.ddl-auto=update

次のエラーが発生します(他のすべてのエラーは消えます)。

org.hibernate.tool.hbm2ddl.SchemaUpdate  : HHH000388: Unsuccessful: alter table lti_result add constraint FK_1cnh9amy5br8owkmafsrth3as foreign key (result_id) references lti_link
org.hibernate.tool.hbm2ddl.SchemaUpdate  : Constraint "FK_1CNH9AMY5BR8OWKMAFSRTH3AS" already exists; SQL statement: 
    alter table lti_result add constraint FK_1cnh9amy5br8owkmafsrth3as foreign key (result_id) references lti_link [90045-178]

注:ソースはこちらです https://github.com/azeckoski/lti_starter

具体的には、設定: https://github.com/azeckoski/lti_starter/blob/master/src/main/resources/application.properties

およびモデル: https://github.com/azeckoski/lti_starter/tree/master/src/main/Java/ltistarter/model

15
Aaron Zeckoski

インメモリデータベースを使用しているため、Hibernateは実行時にテーブルを見つけません。

hibernate.hbm2ddl.auto=create-drop

これは、ステートメントの順序が次のとおりであるためです。

  • 制約を削除する(fk)
  • テーブルを落とす
  • テーブルを作成する
  • 制約を作成する(fk)

    Query:{[alter table tableIdentifier drop constraint FK_202gbutq8qbxk0chvcpjsv6vn][]} 
    ERROR [main]: o.h.t.h.SchemaExport - HHH000389: Unsuccessful: alter table tableIdentifier drop constraint FK_202gbutq8qbxk0chvcpjsv6vn
    ERROR [main]: o.h.t.h.SchemaExport - user lacks privilege or object not found: PUBLIC.TABLEIDENTIFIER
    Query:{[drop table sequenceIdentifier if exists][]} 
    Query:{[drop table tableIdentifier if exists][]} 
    Query:{[create table sequenceIdentifier (id bigint not null, primary key (id))][]} 
    Query:{[create table tableIdentifier (id bigint not null, sequenceIdentifier_id bigint, primary key (id))][]} 
    Query:{[alter table tableIdentifier add constraint FK_202gbutq8qbxk0chvcpjsv6vn foreign key (sequenceIdentifier_id) references sequenceIdentifier][]} 
    Query:{[create sequence hibernate_sequence start with 1 increment by 1][]} 
    

これを修正するには、hibernate.hbm2ddl.autoを変更して更新します。

hibernate.hbm2ddl.auto=update
12
Vlad Mihalcea

create-onlyをお試しください:

spring.jpa.properties.hibernate.hbm2ddl.auto=create-only

これは、少なくとも5.2以降から(おそらくそれ以前にも)Hibernateに追加され、適切なドキュメントは見つかりませんでしたが、 ユーザーガイド:23.15。スキーマの自動生成 と記載されていました

また、ログに表示される場合:

WARN  SessionFactoryOptionsBuilder:394 - Unrecognized hbm2ddl_auto value : create-only.  Supported values include 'create', 'create-drop', 'update', 'none' and 'validate'.  Ignoring

これは誤警報である可能性があります 実際には動作します

2