gpt4 book ai didi

java - Spring-boot 应用程序,H2 嵌入式数据库 - 但当应用程序关闭时表会消失

转载 作者:行者123 更新时间:2023-11-29 08:36:32 25 4
gpt4 key购买 nike

我的database.properties 文件是:

datasource.driver=org.h2.Driver
datasource.url=jdbc:h2:file:./test_database/comixed_db;create=true
datasource.username=sa
datasource.password=

hibernate.dialect=org.hibernate.dialect.H2Dialect
hibernate.hbm2ddl.auto=update
hibernate.show_sql=false
hibernate.format_sql=true
hibernate.batch.size=20
hibernate.current.session.context.class=org.springframework.orm.hibernate5.SpringSessionContext
hibernate.generate_statistics=false
hibernate.enable_lazy_load_no_trans=false

当我的应用程序启动时,我看到我能够通过使用 h2.bat 工具并从 Web 浏览器查看数据库来查看表格。但是,当我关闭应用程序然后使用 h2.bat 工具返回数据库时,表都不见了!

我是否对我的 hibernate 配置做错了什么?我没有使用 create-drop,而是使用 update,因为这段代码目前处于不断变化之中,我希望在发生变化时对表格进行调整。但这似乎不是问题,因为在应用程序关闭时表格会继续消失。

如有任何帮助,我们将不胜感激。

最佳答案

如果你想让 spring boot 捕捉你的 hibernate 属性,你应该在它们前面加上 spring.jpa,所以:

spring.jpa.hibernate.ddl-auto=update

否则,在我看来就是这种情况,spring 将使用默认的 create-drop 选项,因为它正在处理 H2 内存数据库。

关于java - Spring-boot 应用程序,H2 嵌入式数据库 - 但当应用程序关闭时表会消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43700381/

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