I have following two tables with One to Many relation :
Student
-------
Integer Roll_No (pk)
Integer Class (pk)
.....
Attendance
-------
Long Id (Pk)
Integer Roll_No (fk to Student.Roll_No)
Integer Class (fk to Student.Class)
.....
How to do mapping for this two tables in hibernate.Please help.Thanks in advance.