-
Hibernate
/ 1 year agoServlet JSP Hibernate Project
Introduction: This is a small mini project to get the basic understating of Hibernate with JSP & Servlet. Here, we just...
-
Hibernate
/ 1 year agoMany to many relationship in hibernate
1. Introduction A many-to-many mapping represents a relationship between two entities, where each entity can be associated with multiple instances of...
-
Hibernate
/ 1 year agoHibernate: One-TO-Many Relationship
In one-to-many mapping one entity is associated with multiple instances of another entity. It is mostly used to model a parent-child...
-
Hibernate
/ 1 year agoOne-to-One Relationship in Hibernate
One-to-one mapping in hibernate is a way to create a connection between two entities in a database so that one entity...
-
Hibernate
/ 1 year agoHibernate-Mapping
Hibernate mapping is a core part of Object-Relational Mapping (ORM), which defines the relationships between Java objects (entities) and database tables...
-
Hibernate
/ 1 year ago@Embeddable and @Embedded Example in Hibernate
Meaning of Embedded in general term The term Embedded refers to something that is strongly integrated within something else. It is...
-
Hibernate
/ 1 year agoDifference Between get() and load() method in Hibernate
Hibernate gives us two ways to get data from the database using their primary key. These are called get() and load()...