【发布时间】:2020-04-12 12:00:16
【问题描述】:
我的应用程序基于 Spring Boot 2.2.2.RELEASE 和 PostgreSQL。就持久性而言,我依赖于 Spring 的 AutoConfiguration。我的 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.jpa.properties.hibernate.hbm2ddl.auto=create 的设置被 Spring 忽略 - 与它的值无关 - 而 spring.jpa.properties.javax... 属性被正确应用,这很容易通过查看生成的 SQL 文件(createDb.sql 和 dropDb. sql)。
有人知道这种行为的原因可能是什么吗?我真的很感激,因为我已经尝试找到这个问题的根本原因超过一天了?
就像一个侧节点:Spring Boot 2.0.5.RELEASE 的行为是一样的。
【问题讨论】:
标签: postgresql hibernate spring-boot jpa hbm2ddl