Hibernate Inverse

Hibernate Inverse

An Inverse attribute is used to maintain the relationship between the parent and child class object. The inverse attribute is used only with bi-directional mappings such as one-to-many and many-to-many Hibernate mapping.

In Hibernate, the relationship is maintained only by the “relationship-owner.” The relationship owner is the in-charge of the relation and handles all the tasks.  It is also used to update the relationship. Hence, the inverse attribute defines which side is the relationship owner. 

The inverse attribute is defined in the XML mapping file of the POJO class.

 Syntax of Inverse

The value of an inverse attribute can be true or false:

  1. inverse = “true”
  2. inverse = “false”
  1. inverse = “true”

If inverse= “true” is set in the XML mapping file, the child class will become the relationship owner. Here, an update is done by the child class.

Syntax of inverse= “true”

 
  • inverse = “false”

If inverse= “false” is set in the XML mapping file, the parent class will become the relationship owner. Here, an update is done by the parent class. If the inverse is not defined in the mapping file, the inverse= “false” is used by default.

Syntax of inverse= “false”

 

Example of Inverse

 Let’s understand the concept of inverse with the help of an example. In this example, we are taking one-to-many association mapping. There are two POJO classes, one is the Vendor, and the other is Customers. One Vendor (parent) can have many Customers (child); therefore, we are adding a collection property in the parent class.

Following are the steps to create an example of the inverse:

  1. Create all POJO classes

Vendor.java

import java.util.Set;
 public class Vendor {
  private int vendid;
  private String name;
  private Set children;
  public int getVendid() {
  return vendid;
  } 
  public void setVendid(int vendid) {
  this.vendid = vendid;
  }
  public String getName() {
  return name; 
  }
  public void setName(String name) {
  this.name = name;
  }
  public Set getChildren() {
  return children; 
  }
  public void setChildren(Set children) {
  this.children = children;
  }
  public Vendor(){
  }
  public Vendor(int vendid, String name, Set children) { 
  super();
  this.vendid = vendid;
  this.name = name;
  this.children = children;
  }
  } 

Customers.java

public class Customers {
  private int cid;
  private String cname;
  public int getCid() {
  return cid;
  }
  public void setCid(int cid) { 
  this.cid = cid;
  }
  public String getCname() {
  return cname;
  }
  public void setCname(String cname) { 
  this.cname = cname;
  }
  public Customers(int cid, String cname) {
  super();
  this.cid = cid;
  this.cname = cname; 
  }
  public Customers() {
  }
  } 
  • Create mapping files for all POJO classes

vendor.hbm.xml


 
 
  
   
  
  
  
  
  
   
  
  
  
  
   
  

customers.hbm.xml


 
 
  
  
  
   
  
  
  
  
  
  
  • Create a configuration file

hibernate.cfg.xml


 
 
  
   
  
   
  
  
  • Create the main class that stores the object of POJO class.

App.java

import java.util.HashSet;
 import java.util.Set;
 import org.hibernate.Session;
 import org.hibernate.SessionFactory;
 import org.hibernate.cfg.Configuration;
 public class App 
 {
  public static void main( String[] args ) 
  {
  Configuration cfg= new Configuration();
  cfg.configure("hibernate.cfg.xml");
  SessionFactory fact= cfg.buildSessionFactory();
  Session session= fact.openSession();
  session.beginTransaction(); 
  Vendor vendor= new Vendor();
  vendor.setVendid(01);
  vendor.setName("jyotika");
  Customers customer= new Customers();
  customer.setCid(10);
  customer.setCname("Shikha"); 
  Customers c= new Customers();
  c.setCid(16);
  c.setCname("shubham");
  Set s= new HashSet();
  s.add(customer);
  s.add(c); 
  vendor.setChildren(s);
  session.save(vendor);
  session.getTransaction().commit();
  session.close();
  System.out.println("added");
  session.close();
  }
 } 

Output

App.java

Database Tables

customers

Database Tables

vendor

vendor

vendor_customers

vendor_customers

Related Topics

Hibernate get() vs. load()

Hibernate methods, get() and load() both are provided by the Session interface and used to retrieve the objects from the database. Session.get() The session.get() method is used to fetch a persistent object of the...

2 minutes read.

Hibernate Query Language (HQL)

Hibernate provides its query language called Hibernate Query Language (HQL). HQL is an object-oriented query language, similar to the native SQL language, and it works with persistent objects. It is a database-independent and...

2 minutes read.

Cascade in Hibernate

Cascading is a feature in Hibernate, which is used to manage the state of the mapped entity whenever the state of its relationship owner (superclass) affected. When the relationship owner (superclass) is saved/...

3 minutes read.

Hibernate Composite Primary Key

Hibernate Composite Primary Key A Composite Primary Key is a combination of one or more columns that forms a primary key. When a database table contains more than one primary key column, it is...

8 minutes read.

Hibernate Web Application Example

Web Application Example with Hibernate In this section, we create a hibernate web Application. Here we are using a JSP file for presentation. Example of creating a web application using hibernate index.jsp This page will show a...

2 minutes read.

Hibernate Inheritance - Single Table

Hibernate Inheritance In this inheritance strategy, only one table is created for all the classes involved in the hierarchy with an additional column known as a discriminator column. The discriminator column helps indifferentiating between...

3 minutes read.

Hibernate SessionFactory

Next → Hibernate SessionFactory A SessionFactory is an interface in Hibernate that create the instances of Session interface. It is a heavy weight object, and it is usually created during the application...

3 minutes read.

Dirty Checking in Hibernate

Dirty checking is an essential concept of Hibernate. The Dirty checking concept is used to keep track of the objects. It automatically detects whether an object is modified (or not) or wants to...

6 minutes read.

Hibernate vs. JDBC

What is Hibernate? Hibernate is an Object-Relational Mapping (ORM) tool which reduces the difficulty in the application development. Hibernate provides a framework that interacts with the data stored in the databases. It also uses...

2 minutes read.

Hibernate Features

1. Lightweight Hibernate is a lightweight framework as it does not contains additional functionalities; it uses only those functionalities required for object-relational mapping. It is a lightweight framework because it uses persistent...

2 minutes read.

Lazy Loading in Hibernate

Lazy loading is a fetching technique used for all the entities in Hibernate. It decides whether to load a child class object while loading the parent class object. When we use association mapping...

3 minutes read.

Hibernate First-Level Cache

The first-level cache is related to the Session object. First level cache objects of one Session are not visible to the other Sessions, and all the cache data is lost when the Session...

2 minutes read.

Hibernate Annotation with Example

Hibernate is an ORM (Object-Relational Mapping) tool which simplifies the application development. Hibernate provides a framework which interacts with the data stored in the databases and it also uses the specifications of the...

2 minutes read.

Hibernate Named Query using Annotation

In annotation-based named query, we use @NamedQuery annotation inside the POJO class. @NamedQuery- It is used to describe a single named query. It consists of four attributes- two of which are compulsory, and...

2 minutes read.

Hibernate Configuration Properties

Hibernate Configuration Hibernate Configuration is a Java class, which allows a Java application to specify configuration parameters used in the application. As Hibernate is designed to serve in different environments, it needs a broad...

6 minutes read.

Hibernate Many-to-Many Mapping

Many-to-Many Hibernate Mapping with Example In Many-to-Many association mapping, more than one objects of a persistent class are associated with more than one objects of another persistent class. For example, many (categories) are related to...

3 minutes read.

Hibernate Named Query Using XML

A named query is a technique used to assemble all the queries (Native SQL and HQL) in a specific location and refer them by some name. It helps in reducing the mess...

3 minutes read.

Hibernate Merge

Hibernate Merge Merge is a method available in Hibernate which is used to update the existing records. However, it creates a copy from the passed entity objects and returns it. In other words, the merge()...

2 minutes read.

Hibernate Inheritance Table Per Class

In this inheritance strategy, table per class is generated. It means a separate table is generated for each POJO class involved in the hierarchy. Unlike the SINGLE_TABLE strategy, there are no nullable values...

3 minutes read.

Hibernate One-to-Many Mapping

One-to-Many Hibernate Mapping Example In One-to-many association mapping, only one object of a persistent class is related to many objects of another persistent class. It is a relationship in which one (parent) is related...

3 minutes read.