Skip to content
Advertisement

org.hibernate.MappingException: collection foreign key mapping has wrong number of columns

I have a class Subject as such,

JavaScript

Its composite Id is defined in SubjectId class as such,

JavaScript

On compiling, I get the error

org.hibernate.MappingException: collection foreign key mapping has wrong number of columns: com.example.Subject.students type: component[name,teacher]

While this points the error to students element, the error occured after I removed the autogenerated id of Subject, and replaced it with combination of name and teacher.

Anyway, students element is mapped in StudentSubject class as such,

JavaScript

Advertisement

Answer

When this error occurs, it generally means that hibernate is having problem mapping foreign keys on a right number of columns.

In above case, the subject entity in StudentSubject class was not getting mapped to two columns, that is the name and teacher_email(which is the primary key of Teacher table).

To fix such errors, add @JoinColumns as below

JavaScript

The referencedColumnName refers to the name of the column in the foreign table.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement