spring boot jpa没有自动生成表的原因——加上@Entity

别人的项目弄了好久,竟然是忘记加注解,当然配置文件还是要配置jpa的,pom也要依赖jpa。

@Entity

jpa:
hibernate:
ddl-auto: update
show-sql: true

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>


原文地址:https://www.cnblogs.com/MarsMercury/p/11544236.html