I have two class
Class Item
{
private Auction CorrespondingAuction;
}
Class Auction
{
private Item CurrentItem;
}
Can someone tell how to set this one to one mapping in XML, it must be bidirectional
|
I have two class
Can someone tell how to set this one to one mapping in XML, it must be bidirectional |
||||
|
|
|
Bookmark this cheat sheet.This shows simple examples of all the mappings supported by Hibernate. |
|||
|
|
|
In Auction XML FILE:
In Item XML File:
property-ref refers to the name of the variable corresponding to class item in the auction class |
|||
|
|
|
You need to have PK in common:
The ID for Auction is taken from the ID already generated for Item |
|||||
|
|