Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

Bookmark this cheat sheet.This shows simple examples of all the mappings supported by Hibernate.

share|improve this answer
To others: it is a nice reference, but it is XML based. – ArtB Mar 22 '11 at 21:10
up vote 2 down vote accepted

In Auction XML FILE:

 <many-to-one name="CurrentItem" class="com.BiddingSystem.Models.Item" fetch="join"
            not-null="true" cascade="all" unique="true" lazy="false">
            <column name="CURRENTITEM" />
 </many-to-one>

In Item XML File:

<one-to-one name="auction" class="com.BiddingSystem.Models.Auction" property-ref="CurrentItem"/>

property-ref refers to the name of the variable corresponding to class item in the auction class

share|improve this answer

You need to have PK in common:

Class Item {
    @Id
    Long id;
    @OneToOne
    private Auction CorrespondingAuction;
}

Class Auction {
    @Id
    Long id;
    private Item CurrentItem;
}

The ID for Auction is taken from the ID already generated for Item

share|improve this answer
I am using xml mapping – Noor Jan 8 '11 at 15:03
The XML mapping names are the same as the annotations – Brian Topping Jan 8 '11 at 15:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.