Hibernate配置单向一对多或多对一,出现 org.hibernate.MappingException: Repeated column in mapping for entity5

Hibernate配置单向一对多或多对一,出现 org.hibernate.MappingException: Repeated column in mapping for entity5_第1张图片报错情况就是这样,网上一般情况是说的
使用的Hibernate实体类映射数据库时 配置对应 映射时出现了重复情况**
should be mapped with insert=“false” update=“false”)
主要是因为 数据库里面的字段只能映射到实体类的一个属性
Hibernate配置单向一对多或多对一,出现 org.hibernate.MappingException: Repeated column in mapping for entity5_第2张图片
如图:1. 第一次数据库cid字段,单向多对一映射到 category属性。
2.第二次数据库cid字段,映射到cid属性
···

去掉一个或者在其中一个加入 insert=“false” update=“false” 即可。

这是在一个xml文件中出现的情况。
当我同时需要在另外一个xml文件中,使用一对多单向映射,将cid字段(数据库里面的字段)映射到Products集合里面的单个对象时。也就是下面是同一个项目中的2个XML文件。虽然是2个xml文件,但是因为都需要将cid字段映射2次 所以也会报: org.hibernate.MappingException: Repeated column in mapping for entity: com.pojo.Product column: cid should be mapped with insert=“false” update=“false”)
Hibernate配置单向一对多或多对一,出现 org.hibernate.MappingException: Repeated column in mapping for entity5_第3张图片Hibernate配置单向一对多或多对一,出现 org.hibernate.MappingException: Repeated column in mapping for entity5_第4张图片
同理去掉一个或者在其中一个加入 insert=“false” update=“false” 即可。

你可能感兴趣的:(Hibernate配置单向一对多或多对一,出现 org.hibernate.MappingException: Repeated column in mapping for entity5)