Many To Many Annotation mapping in Hibernate

Let us understand Bidirectional Many to Many Annotation Mapping in Hibernate In this relation mapping, one object of a class ‘X’ is associated with multiple objects of class ‘Y’ and one object of class ‘y’ is associated with multiple objects of class ‘X’. In other words One record of a table ‘A’ is associated with […]

Share this article on

HQL overview in Hibernate

We have understood how to perform various operations like Insert,Update,delete and Select on single row of a table in Hibernate. We have different methods in Hibernate like save,get,delete and update methods to perform the same But what if we want to Select or Update or Insert all the records of a table based on some […]

Share this article on
< Previous Next >