gpt4 book ai didi

postgresql - Spring Boot 2.2.2 和 "hibernate.hbm2ddl.auto=(create|create-drop|update|validate)"不工作

转载 作者:行者123 更新时间:2023-12-05 07:15:56 26 4
gpt4 key购买 nike

我的应用程序基于 Spring Boot 2.2.2.RELEASE 和 PostgreSQL。就持久性而言,我依赖于 Spring 的自动配置。我的 application.properties 文件包含以下内容:

# Persistence
dbVendor=postgresql

# Basic connection options
spring.dataSource.driver-class-name=org.postgresql.Driver
spring.dataSource.url=jdbc:postgresql://is-0001/<database>
spring.dataSource.username=<username>
spring.dataSource.password=<password>

# Hibernate options
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
spring.jpa.properties.hibernate.format_sql=false
spring.jpa.properties.hibernate.hbm2ddl.auto=create
spring.jpa.properties.hibernate.show_sql=false
spring.jpa.properties.hibernate.implicit_naming_strategy=<package>.ImplicitNamingStrategyImpl
spring.jpa.properties.hibernate.physical_naming_strategy=<package>.PhysicalNamingStrategyImpl

# Options to create sql scripts
spring.jpa.properties.javax.persistence.schema-generation.scripts.action=create
spring.jpa.properties.javax.persistence.schema-generation.scripts.create-target=/development/projects/<project>/backend/sql/setup/createDb.sql
#spring.jpa.properties.javax.persistence.schema-generation.scripts.drop-target=/development/projects/<project>/backend/sql/setup/dropDb.sql

出于某种原因,Spring 忽略了 spring.jpa.properties.hibernate.hbm2ddl.auto=create 的设置 - 与其值无关 - 而 spring.jpa.properties。 javax... 属性已正确应用,这很容易通过查看生成的 SQL 文件(createDb.sql 和 dropDb.sql)进行验证。

有人知道这种行为的原因是什么吗?我真的很感激,因为我已经尝试找到这个问题的根本原因一天多了?

作为侧节点:Spring Boot 2.0.5.RELEASE 的行为相同。

最佳答案

你可以在这里看看:

https://docs.spring.io/spring-boot/docs/current/reference/html/howto.html#howto-initialize-a-database-using-hibernate

需要设置属性:spring.jpa.hibernate.ddl-auto=create

关于postgresql - Spring Boot 2.2.2 和 "hibernate.hbm2ddl.auto=(create|create-drop|update|validate)"不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59417335/

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