-->
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: Associating @EmbeddedId with specific property of component
PostPosted: Tue Apr 22, 2008 5:53 am 
Newbie

Joined: Fri May 07, 2004 5:33 am
Posts: 18
I'm trying to map a legacy object model using Hibernate/JPA annotations, and I have a rather peculiar requirement regarding one of the entity's primary keys - the actual entity ID is contained within a component object, but this component object contains other non-key properties.

For example:

@Entity
public class MyEntity {
@EmbeddedId
private MyComponent component;
}

public class MyComponent {
private String id;
private String someOtherThingThat'sNotAKey;
}


With this set up, every property of MyComponent becomes part of the entity identifier, whereas what I need is for only component.id to form the identifier, and for the other properties of component tp be stored as normal embedded properties.

Is this stretching things too far?


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.