学习基础平台-Could not determine type for: java.util.Set, at table

时间:2022-06-20 16:05:19

今日工作内容:用基础平台写产品管理。

问题

1、Could not determine type for: java.util.Set, at table: t_category, for columns: [org.hibernate.mapping.Column(product)]

解决:在建映射关系的时候,继承的BaseEntity是早get上面写的注解,如果在属性上面再写注解的话,就会报错,就是说不能在get上面注解,又在属性上面注解。要么只用一种方式注解。

 2、@OneToOne or @ManyToOne on com.xk.outlist.model.entity.OutDetailEntity.outList references an unknown entity: com.xk.outlist.model.entity.OutListEntity

解决:少了@Entity的注解。

明日计划:完成产品管理。