now, learning hibernate, , started using in project. crud application. used hibernate crud operations. works of them. but, one-to-many & many-to-one, tired of trying it. gives me below error.   org.hibernate.mappingexception: not determine type for: java.util.list, @ table: college, columns: [org.hibernate.mapping.column(students)]   then again went through video tutorial . simple me, in beginning. but, cant make work. now, says   org.hibernate.mappingexception: not determine type for: java.util.list, @ table: college, columns: [org.hibernate.mapping.column(students)]   i have ran searches in internet, there telling its bug in hibernate , , says, adding @genereatedvalue  error ll cleared. but, nothings works me,   i hope ll fix!!   thanks!   here code:   college.java   @entity public class college { @id @generatedvalue(strategy=generationtype.auto) private int collegeid; private string collegename;   private list<student> students;  @onetomany(targetentity=student.class, ...