inverse = “true” example and explanation
There are many Hibernate articles try to explain the “inverse” with many Hibernate “official” jargon, which is very hard to understand (at least to me). In few articles, they even suggested that just forget about what is “inverse”, and always put inverse=”true” in the collection variable.
This statement is always true – “put inverse=true in collection variable”, but do not blindfold on it, try to understand the reason behind is essential to optimal your Hibernate performance.
What is “inverse” ?
This is the most confusing keyword in Hibernate, at least i took quite a long time to understand it. The “inverse” keyword is always declare in one-to-many and many-to-many relationship (many-to-one doesn’t has inverse keyword), it means which side is responsible to take care of the relationship.
“inverse”, should change to “relationship owner”?
In Hibernate, only the “relationship owner” should maintain the relationship, and the “inverse” keyword is created to defines which side is the owner to maintain the relationship. However the “inverse” keyword itself is not verbose enough, I would suggest change the keyword to “relationship_owner“.
In short, inverse=”true” means this is the relationship owner, and inverse=”false” (default) means it’s not.
1. One to many Relationship
This is a one-to-many relationship table design, a STOCK table has many occurrences in STOCK_DAILY_RECORD table.

2. Hibernate Implementation
See the Hibernate implementation in XML mapping files.
File : Stock.java
public class Stock implements java.io.Serializable { ... private Set<StockDailyRecord> stockDailyRecords = new HashSet<StockDailyRecord>(0); ...
File : StockDailyRecord.java
public class StockDailyRecord implements java.io.Serializable { ... private Stock stock; ...
File : Stock.hbm.xml
<hibernate-mapping> <class name="com.mkyong.common.Stock" table="stock" ...> ... <set name="stockDailyRecords" table="stock_daily_record" fetch="select"> <key> <column name="STOCK_ID" not-null="true" /> </key> <one-to-many class="com.mkyong.common.StockDailyRecord" /> </set> ...
File : StockDailyRecord.hbm.xml
<hibernate-mapping> <class name="com.mkyong.common.StockDailyRecord" table="stock_daily_record" ...> ... <many-to-one name="stock" class="com.mkyong.common.Stock"> <column name="STOCK_ID" not-null="true" /> </many-to-one> ...
3. inverse = true / false
Inverse keyword is applied in one to many relationship. Here’s the question, if save or update operation perform in “Stock” object, should it update the “stockDailyRecords” relationship?
File : Stock.hbm.xml
<class name="com.mkyong.common.Stock" table="stock" ...> ... <set name="stockDailyRecords" table="stock_daily_record" inverse="{true/false}" fetch="select"> <key> <column name="STOCK_ID" not-null="true" /> </key> <one-to-many class="com.mkyong.common.StockDailyRecord" /> </set> ...
1. inverse=”true”
If inverse=”true” in the set variable, it means “stock_daily_record” is the relationship owner, so Stock will NOT UPDATE the relationship.
<class name="com.mkyong.common.Stock" table="stock" ...> ... <set name="stockDailyRecords" table="stock_daily_record" inverse="true" >
2. inverse=”false”
If inverse=”false” (default) in the set variable, it means “stock” is the relationship owner, and Stock will UPDATE the relationship.
<class name="com.mkyong.common.Stock" table="stock" ...> ... <set name="stockDailyRecords" table="stock_daily_record" inverse="false" >
See more examples below :
4. inverse=”false” Example
If keyword “inverse” is not define, the inverse = “false” will be used, which is
<!--Stock.hbm.xml--> <class name="com.mkyong.common.Stock" table="stock" ...> ... <set name="stockDailyRecords" table="stock_daily_record" inverse="false">
It means “stock” is the relationship owner, and it will maintains the relationship.
Insert example …
When a “Stock” object is saved, Hibernate will generated three SQL statements, two inserts and one update.
session.beginTransaction(); Stock stock = new Stock(); stock.setStockCode("7052"); stock.setStockName("PADINI"); StockDailyRecord stockDailyRecords = new StockDailyRecord(); stockDailyRecords.setPriceOpen(new Float("1.2")); stockDailyRecords.setPriceClose(new Float("1.1")); stockDailyRecords.setPriceChange(new Float("10.0")); stockDailyRecords.setVolume(3000000L); stockDailyRecords.setDate(new Date()); stockDailyRecords.setStock(stock); stock.getStockDailyRecords().add(stockDailyRecords); session.save(stock); session.save(stockDailyRecords); session.getTransaction().commit();
Output…
Hibernate:
INSERT
INTO
mkyongdb.stock
(STOCK_CODE, STOCK_NAME)
VALUES
(?, ?)
Hibernate:
INSERT
INTO
mkyongdb.stock_daily_record
(STOCK_ID, PRICE_OPEN, PRICE_CLOSE, PRICE_CHANGE, VOLUME, DATE)
VALUES
(?, ?, ?, ?, ?, ?)
Hibernate:
UPDATE
mkyongdb.stock_daily_record
SET
STOCK_ID=?
WHERE
RECORD_ID=?Stock will update the “stock_daily_record.STOCK_ID” through Set variable (stockDailyRecords), because Stock is the relationship owner.
The third statement is really NOT necessary.
Update example …
When a “Stock” object is updated, Hibernate will generated two SQL statements, one inserts and one update.
session.beginTransaction(); Stock stock = (Stock)session.get(Stock.class, 57); StockDailyRecord stockDailyRecords = new StockDailyRecord(); stockDailyRecords.setPriceOpen(new Float("1.2")); stockDailyRecords.setPriceClose(new Float("1.1")); stockDailyRecords.setPriceChange(new Float("10.0")); stockDailyRecords.setVolume(3000000L); stockDailyRecords.setDate(new Date()); stockDailyRecords.setStock(stock); stock.getStockDailyRecords().add(stockDailyRecords); session.save(stockDailyRecords); session.update(stock); session.getTransaction().commit();
Output…
Hibernate:
INSERT
INTO
mkyongdb.stock_daily_record
(STOCK_ID, PRICE_OPEN, PRICE_CLOSE, PRICE_CHANGE, VOLUME, DATE)
VALUES
(?, ?, ?, ?, ?, ?)
Hibernate:
UPDATE
mkyongdb.stock_daily_record
SET
STOCK_ID=?
WHERE
RECORD_ID=?Again, the third statement is NOT necessary.
5. inverse=”true” Example
If keyword “inverse=true” is defined :
<!--Stock.hbm.xml--> <class name="com.mkyong.common.Stock" table="stock" ...> ... <set name="stockDailyRecords" table="stock_daily_record" inverse="true">
Now, it means “stockDailyRecords” is the relationship owner, and “stock” will not maintains the relationship.
Insert example …
When a “Stock” object is saved, Hibernate will generated two SQL insert statements.
session.beginTransaction(); Stock stock = new Stock(); stock.setStockCode("7052"); stock.setStockName("PADINI"); StockDailyRecord stockDailyRecords = new StockDailyRecord(); stockDailyRecords.setPriceOpen(new Float("1.2")); stockDailyRecords.setPriceClose(new Float("1.1")); stockDailyRecords.setPriceChange(new Float("10.0")); stockDailyRecords.setVolume(3000000L); stockDailyRecords.setDate(new Date()); stockDailyRecords.setStock(stock); stock.getStockDailyRecords().add(stockDailyRecords); session.save(stock); session.save(stockDailyRecords); session.getTransaction().commit();
Output …
Hibernate:
INSERT
INTO
mkyongdb.stock
(STOCK_CODE, STOCK_NAME)
VALUES
(?, ?)
Hibernate:
INSERT
INTO
mkyongdb.stock_daily_record
(STOCK_ID, PRICE_OPEN, PRICE_CLOSE, PRICE_CHANGE, VOLUME, DATE)
VALUES
(?, ?, ?, ?, ?, ?)Update example …
When a “Stock” object is updated, Hibernate will generated one SQL statement.
session.beginTransaction(); Stock stock = (Stock)session.get(Stock.class, 57); StockDailyRecord stockDailyRecords = new StockDailyRecord(); stockDailyRecords.setPriceOpen(new Float("1.2")); stockDailyRecords.setPriceClose(new Float("1.1")); stockDailyRecords.setPriceChange(new Float("10.0")); stockDailyRecords.setVolume(3000000L); stockDailyRecords.setDate(new Date()); stockDailyRecords.setStock(stock); stock.getStockDailyRecords().add(stockDailyRecords); session.save(stockDailyRecords); session.update(stock); session.getTransaction().commit();
Output…
Hibernate:
INSERT
INTO
mkyongdb.stock_daily_record
(STOCK_ID, PRICE_OPEN, PRICE_CLOSE, PRICE_CHANGE, VOLUME, DATE)
VALUES
(?, ?, ?, ?, ?, ?)Many people like to compare between inverse and cascade, but both are totally different notions, see the differential here.
Conclusion
Understanding the “inverse” is essential to optimize your Hibernate code, it helps to avoid many unnecessary update statements, like “insert and update example for inverse=false” above. At last, try to remember the inverse=”true” mean this is the relationship owner to handle the relationship.
Reference
- http://simoes.org/docs/hibernate-2.1/155.html
- http://docs.jboss.org/hibernate/stable/core/reference/en/html/example-parentchild.html
- http://tadtech.blogspot.com/2007/02/hibernate-when-is-inversetrue-and-when.html
[...] good links explaining this concept can be found here, here and [...]
Great article, thanx
I’m not sure, why this article making inverse so complicated to understand. JBoss web site clearly mentioned that in one-2-many, inverse = true has to be at many side, and in many-2-many, it does not matter which side you put. Following is excerpt from the site.
=========================================================
The rules are straightforward: all bi-directional associations need one side as inverse. In a one-to-many association it has to be the many-side, and in many-to-many association you can select either side.
=========================================================
As i said in the first paragraph, often times, just forget about the keyword and use what mentioned in the documentation, it worked in most cases.
However, understand how “inverse” works may help you fine tune your query in some cases.
Best Article so far on explaining what goes underneath inverse=true/false
Thanks a lot Mkyong !!
Hi,
It is nice explanation, however after reading this: it seems to me what’s the use of inverse=false then!!! As it’s create an extra update statement, why Hibernate core lib set inverse=true instead of default false?
Thanks,
Anish
excellent writeup esp since u explained what will happen if inverse=false. i was thinking if i dont specify inverse=true then hibernate will give error or do a wrong update.keep it up.
[...] This article, currently the first result for “Hibernate inverse”, is misleading. You don’t ALWAYS want to set inverse=true. The Hibernate documentation does in fact state: If the foreign key column of a <one-to-many> association is declared NOT NULL, you must declare the <key> mapping not-null="true" or use a bidirectional association with the collection mapping marked inverse="true". See Section 7.3.2, “Bidirectional associations”. [...]
See http://docs.jboss.org/hibernate/core/3.3/reference/en/html/associations.html#assoc-bidirectional
inverse=”true” means that THE OTHER side is the relationship owner and this one is just the inverse, so relationship_owner=”true” would be equal to inverse=”false”.
Since this post is among the first returned by Google when searching for “hibernate inverse” and since you already got it right here: http://www.mkyong.com/hibernate/hibernate-one-to-many-relationship-example/ – it would be nice if you could correct this.
Nice Article explain an important concept. I use JPA 2.0 with hibernate as the underlying persistence provider. Can you tell me how to specify inverse=true using jpa/hibernate annotations.
Hi,
It is an excellent article…
I went through many articles but they could not explain the term so well. Now it is crystal clear…
Thanks!! a lot..
OMG!!!!!! Thank you soooo much!!!! I have been pulling my hair out trying to get a set to persist! Hugs and Kisses!!! XXOOXXOOXXOO
You have something completely wrong in your article:
However the “inverse” keyword itself is not verbose enough, I would suggest change the keyword to “relationship_owner”.
“inverse” attribute should be interpreted as “ignore relationship” or something like that, it seems that you’ve completely wrong here.
Hi dima,
Thanks for sharing your idea, but i do not think i’m wrong, as least the “relationship_owner” notion is much more make sense for me, however i like your “ignore relationship” notion as well.
Of course, different people have their prefer easy-to-understand notion, just use whatever make sense.
Hi,
Great article, very good example!
However, I would also like to join to dima remark -
If the inverse is the “relationship owner” and inverse = false means that the entity is NOT the relationship owner, than I would assume that in that case both ends of the relationship would have to maintain their own side since no one is the owner.. However, in your example when the “relationship owner” is false, one side does maintain the relationship for the other end, suggesting it IS the owner…
Having said that – its really good explained article -Thanks !
Sorry for the poor English, your inputs make this article more accurate
Yes I have gone through a site which explained it through the “ignore relationship”. May be the text of that site or something, I really couldn’t understand what he was trying to say. Here with the “relationship_owner” example I could very easy understand.
Thanks mkyong for this wonderful piece of information
Hi Mahesh, welcome, i just use whatever make sense to me
In the above example:
update the foreign key “stock_daily_record.ITEM_ID” in StockDailyRecord table–>
I am confused stock_daily_record.ITEM_ID means the Stock_Id(Foreign key) inthe stockDailyRecord table am i right..if not please clarify.
post updated, thanks for the correction
[...] inverse = “true” example and explanation The “inverse” is the most confusing keyword in Hibernate, but you have to understand this clearly in order to fine tune your relationship performance. [...]
[...] inverse = “true” example and explanation | Hibernate [...]
[...] StockCategory maintain the relationship between Stock and Category, see inverse=”true” explanation. [...]
[...] Hibernate will only insert or update the STOCK table, no update on the foreign key column. More detail example here… [...]
[...] The inverse=”true” is tells Hibernate about the relationship owner is belong to other side , not the class. More detail…. [...]