Hibernate不创建MySQL表,运行应用程序时无错误

gj3fmq9x  于 2023-10-23  发布在  Mysql
关注(0)|答案(1)|浏览(139)

enter image description here
服务创建顺利,但没有在数据库中创建表。

# application.properties
spring.datasource.url=jdbc:mysql://localhost:3306/userdb
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.show-sql=true
spring.jpa.database = MYSQL
spring.jpa.properties.hibernate.formate_sql=true;
spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto = create
spring.jpa.hibernate.dialect = org.hibernate.dialect.MySQL8Dialect
spring.jpa.hibernate.naming_strategy = org.hibernate.cfg.ImprovedNamingStrategy
3wabscal

3wabscal1#

确保MySQL服务器已启动并运行在本地主机上,默认端口为3306,并且名为userdb的数据库存在,检查带有@Entity注解的数据库。此外,验证实体具有正确的字段和注解,如@Id,@GeneratedValue。

相关问题