1

大家好,我是休眠JPA的新手。下面是我定义的实体 A 和 B 之间的关系。

这是类的代码A

class A{

   @Id
   @GeneratedValue
   private Long id;

   @Column(name = "col_1")
private Long col1;

   @Column(name = "col_2")
private Long col2;

   @OneToMany(fetch = FetchType.EAGER,mappedBy = "a")
private List<B> bList= new LinkedList<B>();

   public Long getId() {
    return id;
}

public void setId(Long id) {
    this.id = id;
}

   public List<B> getBList() {
    return bList;
}

public void setBList(List<B> bList) {
    this.bList = bList;
}

}

这是类的代码B

class B{

   @Id
   @GeneratedValue
   private Long id;

   @NotNull
@ManyToOne(optional=false)
@JoinColumns(value = { @JoinColumn(name = "col_1", referencedColumnName="col_1"),
        @JoinColumn(name = "col_1", referencedColumnName="col_2") })
private A a;

    @Column(name = "col_1")
private Long col1;

    @Column(name = "col_2")
private Long col2;

    public A getA() {
    return a;
}

public void setA(A a) {
    this.a = a;
}

     public Long getId() {
    return id;
}

public void setId(Long id) {
    this.id = id;
}
}

我有一个crudrepository用于A. 当我运行一个加载A实体的 crud 方法时,我看到一个左外连接查询,用于B映射到col_1col_2每条记录A。所有这些查询都是多余的。我期望只执行一个左外连接查询。这导致我的应用程序超时。谢谢你的帮助:)

4

0 回答 0