gpt4 book ai didi

hibernate - H2 in-mem-DB with hibernate set to create give me table not found 错误

转载 作者:行者123 更新时间:2023-12-04 15:58:40 26 4
gpt4 key购买 nike

我想在内存数据库中建立一个带有 hibernate 、spring mvc 和 H2 的项目(目前)。
当一切都启动(在码头)时,我收到错误消息说这些表还不存在。

这是我得到的错误:

Okt 09, 2013 3:42:47 PM org.hibernate.tool.hbm2ddl.SchemaExport execute
INFO: HHH000227: Running hbm2ddl schema export
Okt 09, 2013 3:42:47 PM org.hibernate.tool.hbm2ddl.SchemaExport perform
ERROR: HHH000389: Unsuccessful: alter table PUBLIC.Object drop constraint FK_9sd2x4ehbugdjyrp1xqmsjw00
Okt 09, 2013 3:42:47 PM org.hibernate.tool.hbm2ddl.SchemaExport perform
ERROR: Tabelle "OBJECT" nicht gefunden
Table "OBJECT" not found; SQL statement:
...

如果我没有设置 Hibernate 这样就可以了:
hibernate.hbm2ddl.auto=create

H2 的连接字符串是这样的:
jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=TRUE

我可以使用 IntelliJ 连接到数据库,所以它就在那里..

我希望 Hibernate 为我生成表,然后是约束以及接下来的任何其他内容,但由于某种原因它没有这样做。这可能是用户权利的事情吗?这些是我设置的用户设置:
jdbc.user=sa
jdbc.pass=

任何帮助表示赞赏!
谢谢 :)

更新

如果我将连接字符串更改为此:
jdbc.url=jdbc:h2:~/db/database.db;DB_CLOSE_ON_EXIT=TRUE;INIT=create schema IF NOT EXISTS generic;

它似乎工作。但是为什么它在内存中不起作用以及为什么在我将默认模式设置为“public”之前它不起作用(它已经存在所以我想不妨把我的东西转储在那里......)IDK!

最佳答案

除了使用:

  • DB_CLOSE_DELAY=-1;
  • DB_CLOSE_ON_EXIT=假;
  • DATABASE_TO_UPPER=假

  • USE this JPA PROPERTY :
    <property name="javax.persistence.schema-generation.database.action" value="drop-and-create"/>

    代替这个 hibernate 属性:
    <property name="hibernate.hbm2ddl.auto" value="create-drop" />

    内存persistence.xml示例中的工作H2:
    <?xml version="1.0" encoding="UTF-8" ?>
    <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"
    version="2.0" xmlns="http://java.sun.com/xml/ns/persistence">

    <persistence-unit name="testPU" transaction-type="RESOURCE_LOCAL">

    <description>Hibernate test case template Persistence Unit</description>

    <class>com.domain.A</class>
    <class>com.domain.B</class>

    <exclude-unlisted-classes>true</exclude-unlisted-classes>

    <properties>
    <property name="hibernate.connection.url" value="jdbc:h2:mem:test;MODE=PostgreSQL;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE;DATABASE_TO_UPPER=false" />
    <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect" />
    <property name="hibernate.show_sql" value="true" />
    <property name="hibernate.format_sql" value="false" />
    <property name="javax.persistence.schema-generation.database.action" value="drop-and-create"/>

    <property name="javax.persistence.schema-generation.scripts.action" value="drop-and-create" />
    <property name="javax.persistence.schema-generation.scripts.create-target" value="db-schema.jpa.ddl" />
    <property name="javax.persistence.schema-generation.scripts.drop-target" value="db-schema.jpa.ddl" />
    </properties>
    </persistence-unit>
    </persistence>

    关于hibernate - H2 in-mem-DB with hibernate set to create give me table not found 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19274193/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com