本文介紹了啟動H2數(shù)據(jù)庫時,Hibernate生成Drop Constraint錯誤的Spring Boot的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我使用的是SpringBoot,并有一個這樣配置的H2數(shù)據(jù)庫(在應用程序.properties中)。
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在實際創(chuàng)建數(shù)據(jù)庫之前嘗試刪除這些約束(即Hibernate中的某種錯誤)。
有沒有辦法避免這些錯誤堵塞日志,或者是否表明某個地方出現(xiàn)了真正的故障?
更新%1
正在嘗試使用此設置強制應用程序僅執(zhí)行更新:
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
推薦答案
因為您使用的是內存數(shù)據(jù)庫,所以Hibernate在執(zhí)行時不會找到任何表:
hibernate.hbm2ddl.auto=create-drop
這是因為語句順序是:
刪除約束(FK)
拖放表
創(chuàng)建表
創(chuàng)建約束(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
這篇關于啟動H2數(shù)據(jù)庫時,Hibernate生成Drop Constraint錯誤的Spring Boot的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,