当前位置: 首页 > 知识库问答 >
问题:

将复合外键映射到复合主键

葛永丰
2023-03-14

我在jpa/Hibernate中映射复合键时遇到了问题。父实体和子实体都具有复合主键。

@Embeddable
public class PriceRequestLegKey implements Serializable {
   @Column(name = "leg_request_id")
   private String requestId;
   @Column(name = "display_index")
   private int displayIndex;
   ...
}

@Embeddable
public class AllocationKey implements Serializable {

   @Column(name = "leg_request_id")
   private String requestId;
   @Column(name = "display_index")
   private int displayIndex;
   @Column(name = "allocation_index")
   private int allocationIndex;
   ...
}

@Entity(name = "PriceRequestLeg")
public class PriceRequestLegModel {

   @EmbeddedId
   private PriceRequestLegKey legKey;
   @OneToMany(cascade = CascadeType.ALL)
   @JoinColumns({
      @JoinColumn(name = "leg_request_id", referencedColumnName = "leg_request_id"),
      @JoinColumn(name = "display_index", referencedColumnName = "display_index")
   })
   private List<AllocationModel> allocations;
   ...
}

@Entity(name = "Allocation")
public class AllocationModel {

   @EmbeddedId
   private AllocationKey allocationKey;
   @ManyToOne
   @MapsId
   @JoinColumns({
      @JoinColumn(name = "leg_request_id", referencedColumnName = "leg_request_id"),
      @JoinColumn(name = "display_index", referencedColumnName = "display_index")
   })
   private PriceRequestLegModel leg;
   ...
}

在运行时保存它时会出现以下异常

org.springframework.orm.jpa.JpaSystemException: could not get a field value by reflection getter of com.lbg.legato.rfq.data.entity.AllocationKey.displayIndex; nested exception is org.hibernate.PropertyAccessException: could not get a field value by reflection getter of com.lbg.legato.rfq.data.entity.AllocationKey.displayIndex

我认为这是虚假的,因为有getter和setter。如果在priceRequestLegModel上使用mappedby=“leg”,在allocationModel上使用@mapsid,也会出现同样的错误。有人能指出我在这里做错了什么吗?

共有1个答案

乌翰学
2023-03-14

您应该将mappedby=“leg”还原为priceRequestlegModel@onetomany注释:

@Entity(name = "PriceRequestLeg")
public class PriceRequestLegModel {

   @EmbeddedId
   private PriceRequestLegKey legKey;
   @OneToMany(mappedBy="leg", cascade = CascadeType.ALL)
   private List<AllocationModel> allocations;
   ...
}

然后应该将AllocationKey更改为引用PriceRequestLegKey:

@Embeddable
public class AllocationKey implements Serializable {

   PriceRequestLegKey legKey; // corresponds to PK type of PriceRequestLegModel
   @Column(name = "allocation_index")
   private int allocationIndex;
   ...
}

然后适当地设置allocation.leg@mapsid注释的值:

@Entity(name = "Allocation")
public class AllocationModel {

   @EmbeddedId
   private AllocationKey allocationKey;
   @ManyToOne
   @MapsId("legKey")
   @JoinColumns({
      @JoinColumn(name = "leg_request_id", referencedColumnName = "leg_request_id"),
      @JoinColumn(name = "display_index", referencedColumnName = "display_index")
   })
   private PriceRequestLegModel leg;
   ...
}

JPA2.2规范第2.4.1节中有一些类似的示例。

 类似资料:
  • 问题内容: 我在这里搜索,但未找到任何类似的主题,因此我发布了一个新问题。 我正在使用现有数据库上的Hibernate。我们不允许更改表的结构和数据。该应用程序正在从数据库读取数据,并根据某种逻辑迁移到另一个数据存储。 现在的问题是关于复合PK映射。例如 表A具有复合PK。 表B也有一个复合PK,此复合PK的一部分是A的PK,此处也用作FK。 我尝试了几种方法,但都无济于事。谁能告诉一个有效的Hi

  • 我有两个表:A和B,都有一个复合主键。表B的PK也是表a主键的外键。 当我试图获取映射表B的类的实例时,我得到了以下异常: org.hibernate.TypeMismatchException 这两个类都位于package:com.cairone.ejemple01.entities 完整的日志输出为: 2016-09-21 12:28:24.505错误8568--[main] O.S.Boot

  • 我有2个表,即user和user_session。

  • 在child_tableparent_id列作为外键和复合主键的一部分。 Embedded类内部无法使用标识生成器。所以我在这里使用ID类。为child_id列生成自动增量值。 我无法将parent_table生成parent_id值作为外键值存储在child_table中,它存储为0。 有人能检查一下地图吗?帮帮我…… 提前致谢...

  • 问题内容: 我在为某些实体设置jpa映射时遇到麻烦。我有一个如下定义的父实体。 然后,我有一个带有复合键的子实体,以及此表的主键的外键,如下所示: 我知道子实体不正确,但是我不确定如何将其设置为具有复合PK。我知道我需要设置一个PK类,但是当一个字段是父类的外键时,我不确定该怎么做。一旦设置好,父级将如何引用子级实体? 任何帮助表示赞赏。 问题答案: 这受JPA 2规范的 第2.4.1节“与派生身

  • 我的数据库是: 我们可以在Table2中为Table1中的1设置多行。 我的TABLE1实体是: 我的Table1Id类是: 我的TABLE2实体是: 我的Table2Id类是: 当我尝试启动我的tomcat时,我有以下错误: 我尝试使用引用列,主键连接列和许多其他东西,但是通过在互联网上阅读它,它可以解决数据库建模问题。我认为问题是主键和外键在2个表中具有相同的名称,但我可能是错的......我