-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Want to use @IdClass to define relationship between classes
PostPosted: Mon Sep 14, 2009 6:32 pm 
Newbie

Joined: Sun Jul 06, 2008 7:05 pm
Posts: 6
Hi,

I want to use @IdClass to define associations between classes instead of using the concrete class and it should hopefully work with HQL as the normal mapping (#2)


#1
Code:
@Entity
@IdClass(ZonePk.class)
class Zone {
}

@Entity
class Area {
    @ManyToOne
    ZonePk zone;
}




The following use of the concrete class has certain disadvantages (serialisation of proxy, jaxb, etc).

#2
Code:
@Entity
class Area {
    @ManyToOne
    Zone zone;
}



-Tim


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.