Spring Boot DDL自动生成器
我将Spring Boot" title="Spring Boot">Spring Boot与结合使用spring.jpa.hibernate.ddl-
auto=create,但是当应用程序重新启动时,所有表都会删除并再次创建。有什么方法可以避免为现有表重新创建?
回答:
spring.jpa.hibernate.ddl-auto=update
通常不应该在生产中使用hibernate.ddl-
auto。
以上是 Spring Boot DDL自动生成器 的全部内容, 来源链接: utcz.com/qa/427173.html