Spring-data-jpa生成表格失败的可能原因

一、配置错误
spring-jpa-properties-hibernate-hbm2ddl-auto=update
如果是设置成create则是每次启动都创建新表,可能造成数据丢失,如果是create-drop则是关闭时删除表。
二、表格字段中使用了mysql的保留字,如不起眼的”desc”,如果存在字段名称为desc则会自动创建失败,修改字段名就可以了
三、当写类似@Column等注解时,如果写在属性上,就全部写在属性上,如果写在get方法上就全部写在get方法上,不能混用。报的错误是
Caused by: org.hibernate.MappingException: Could not determine type for: com.breeze.shop.model.App, at table: business, for columns: [org.hibernate.mapping.Column(app)]

你可能感兴趣的:(SpringBoot微服务)