Last updated: Aug 28, 2022

Hibernate Mapping

Hello Ninjas, Hibernate mappings are one of the key features of Hibernate. They establish the relationship between two database tables as attributes in your model which allows you to easily navigate the associations in your model and criteria queries. Let’s learn more about Mappings like Collections, Association, and Component Mappings.
Hibernate Mapping Files MEDIUM
This blog will discuss Hibernate-Mapping files to map the defined class. We will discuss elements, syntax, and Persistence class to understand the Hibernate Mapping files.
Hibernate Mapping Types MEDIUM
In this blog, we will discuss the Hibernate mapping types, which can convert from SQL to Java data types and vice-versa. We will look further at the fundamental and primitive types of mapping.
One to Many XML MEDIUM
In this blog, we will discuss the One-to-Many mapping in hibernate using XML, its example, and file mapping in hibernate project structure.
Many to Many XML
In this blog, we will discuss the Many-to-Many mapping in hibernate using XML, its example, and file mapping in hibernate project structure.
Many to Many Annotations MEDIUM
This article covers the concept of Many to Many annotations in Hibernate using XML. It also goes to mention the codes and examples to make the concept clear.
One-to-One XML
This article covers the concept of One to One mapping in XML. It also includes examples to make the concept clear.
One To One Annotation MEDIUM
In this blog, we will discuss the One-to-One mapping in hibernate using annotation, its example, and file modifications in hibernate project structure.
Many to One XML MEDIUM
This article covers the topic of Many to One XML in detail. It also mentions the required code and examples to make the concept clear.
Many To One Annotation MEDIUM
In this blog, we will discuss the Many-to-One mapping in hibernate using annotation, its example, and file modifications in hibernate project structure.
Component Mapping MEDIUM
In this blog, we will discuss component mapping to map the dependent object as a component. We will further look at the dependent object and dynamic mapping.
What is Inheritance Mapping? MEDIUM
This article explains inheritance mapping and its three strategies using XML and SQL.
TPH Using Annotation MEDIUM
In this article, we will learn how hierarchy is mapped using THP annotation and why we use this procedure over any else.
Table Per Concrete MEDIUM
We'll learn the fundamentals of Table Per Concrete in this blog. We'll learn the fundamentals of Table Per Concrete in this blog. Hibernate is java framework that makes creating Java applications that communicate with databases easier.
TPC Using Annotation | Hibernate MEDIUM
This blog mainly focuses on the TPC Using Annotation. We will discuss TPC with a proper explanation.
Table Per Subclass MEDIUM
This blog will discuss Table Per Subclass.
Hibernate collections mappings MEDIUM
In this blog, we will learn about Hibernate collection mapping in which the collection is mapped into a separate table.
Hibernate Set Mapping MEDIUM
This article will discuss Hibernate Set Mapping. We will use an example to illustrate the notion of Hibernate Set Mapping.
Hibernate SortedMap mapping MEDIUM
In this blog, we will learn about Hibernate SortedMap mapping, a map that keeps its related items in ascending key order at all times.
Hibernate SortedSet Mapping
In this article, we will discuss the concepts of Hibernate SortedSet mapping. We will learn about hibernate SortedSet mapping and list in java in detail and then discuss the mapping procedure step by step.
Hibernate List Mapping MEDIUM
In this article, we will discuss the concepts of Hibernate List mapping. We will learn about hibernate list mapping and list in java in detail and then discuss the mapping procedure step by step
Hibernate bag mapping MEDIUM
In this article, we will discuss hibernate, hibernate bag mapping, bag in collection, use of bag, bag mapping and example.
Hibernate Map mapping MEDIUM
In this blog, we will learn about Hibernate Map mapping which stores elements in key-value pairs. It will not allow duplicate elements.