application.properties 中 spring.jpa.hibernate.ddl-auto=update 的问题

Moh*_*hia 5 java database spring spring-data spring-data-jpa

我的文件有问题application.properties,在这一行:

spring.jpa.hibernate.ddl-auto=update
Run Code Online (Sandbox Code Playgroud)

当我从实体中删除某些属性时,这些属性仍保留在数据库中。

这是 application.properties 的副本:

spring.jpa.generate-ddl=true
spring.jpa.show-sql = true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.dialect = 
org.hibernate.dialect.MySQL5Dialect
spring.datasource.driverClassName = com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/taskmanagement
spring.datasource.username = root
spring.datasource.password = 
server.port=89
spring.data.rest.default-media-type= application/json
Run Code Online (Sandbox Code Playgroud)

我怎么解决这个问题?

And*_*cus 5

如果您想基于对象映射重新创建数据库模式,只需使用:

spring.jpa.hibernate.ddl-auto=create
Run Code Online (Sandbox Code Playgroud)

但请记住,这会破坏您保存在数据库中的数据。

其他选项是使用create-drop- 这将在应用程序终止时破坏您的数据库架构。

编辑:

您无法在不破坏数据的情况下更新数据库架构。想象一下您正在更改某个字段的数据类型并且已经有了数据。数据库不知道如何转换现有数据。