Quantcast
Channel: Java Programming Forum - Learn Java Programming - Hibernate
Viewing all articles
Browse latest Browse all 76

Composite foreign key issue

$
0
0
I am getting this error :- org.hibernate.MappingException: Foreign key must have same number of columns as the referenced primary key

This error seems to be very common and many people seem to have gotten this error. But unfortunately my problem seems to be different from theirs. In my case it seems hibernate cannot find primary key as composite but rather it thinks there is only one column in primary key.

I have two entities :-

1.)DocWemPrimary.java - Master table having composite primary key on columns (doc_id,prod_stage).
2.)DocWemSecondary.java - Child table having composite primary key on columns (doc_id,prod_stage,file_name).

I have two primary key classes for each of the above entities.

1.)DocWemPrimaryId.java 2.)DocWemSecondaryId.java

Here are relevant definitions of above classes :- 1.)DocWemPrimary.java

Code:

@SuppressWarnings("serial")
@Entity
@Table(name = "DOC_WEM_PRIMARY")

public class DocWemPrimary {

@EmbeddedId
private DocWemPrimaryId docWemPrimaryId ;

@OneToMany(fetch=FetchType.LAZY,mappedBy="docId")
@Cascade({ CascadeType.SAVE_UPDATE, CascadeType.DELETE })
private Set<DocWemSecondary> docWemSecondary;
/**Other columns **/
}

2.)DocWemSecondary.java
Code:

@SuppressWarnings("serial")
@Entity
@Table(name = "DOC_WEM_SECONDARY")
@IdClass(DocWemSecondaryId.class)

public class DocWemSecondary {
@Id
  @ManyToOne(fetch=FetchType.LAZY)
  private DocWemPrimary docId ;

@Id
  @Column(name = "FILE_NAME" )
  private String fileName ;

}

3.)DocWemPrimaryId.java

Code:

@Embeddable
public class DocWemPrimaryId implements Serializable{

@Column(name = "DOC_ID",nullable=false)
private String docId ;

@Column(name = "PROD_STAGE",nullable=false)
private String prodStage ;
}

4.)DocWemSecondaryId.java

Code:

@Embeddable
public  class DocWemSecondaryId implements Serializable
{
    @ManyToOne(fetch=FetchType.LAZY)
    @JoinColumns({
        @JoinColumn(name = "DOC_ID", referencedColumnName="DOC_ID" ,nullable = false,insertable=false, updatable=false),
        @JoinColumn(name = "PROD_STAGE", referencedColumnName="PROD_STAGE",nullable = false,insertable=false, updatable=false)})
    private DocWemPrimary docId ;

    @Column(name = "FILE_NAME", insertable=false, updatable=false)
    private String fileName ;

  }

The error message that I get is :-

org.hibernate.MappingException: Foreign key
(FK_l3fmo38mh9t2j69fpesabyegp:DOC_WEM_SECONDARY [DOC_ID,PROD_STAGE]))
must have same number of columns as the referenced primary key (DOC_WEM_PRIMARY [DOC_ID])

As you can see clearly , DocWemPrimary has two columns as primary key. Then why hibernate thinks it only has docId as primary key(as in exception message) - that part has been very puzzling to me.

Thanks for your help.

Viewing all articles
Browse latest Browse all 76

Trending Articles