-->
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.  [ 2 posts ] 
Author Message
 Post subject: Parent-Child (1:n) mit doppeltem Kindmapping in Parent ?
PostPosted: Fri Mar 09, 2007 5:19 am 
Newbie

Joined: Mon Oct 10, 2005 6:10 am
Posts: 10
Hibernate version:
3.2

Hallo zusammen,

ist es möglich, in einer one-to-many Beziehung, die referenzierte Klasse mehrfach in der referenzierenden zu mappen?

Hier ein Beispiel: Klassisches Parent-Child Beispiel mit Qualifizierung der Kinder. Diese sollen in zwei Collections (im Parent) gepflegt werden, die aber in einer Tabelle persistent gehalten werden.

Hibernate weigert sich, diese Art Mapping anzunehmen. Nur wenn eine der beiden Collections als Read-only markiert ist, könnte es klappen.

Code:
//PSEUDOCODE

Tabellen

PARENT (ID,NAME)
CHILDREN(ID,PARENT_ID,GENDER,NAME)

class Parent {

   @Id
   int id;
   
   String name;

   //einmal CHILD mappen geht
   @OneToMany(mappedBy = "parent")
   @Where("gender=0") ???
   Collection<Child> maleChildren;

   //zweites mapping ist so nicht erlaubt - schade, gibt es alternativen?
   @OneToMany(mappedBy = "parent")
   @Where("gender=1") ???
   Collection<Child> femaleChildren

}

class Child{

  static MALE_CHILD = 0;
  static FEMALE_CHILD  = 1;

  int gender = 0;
 
  @ID
  int id;

  @ManyToOne
  @JoinColumn(name="parent_id",nullable=false)
  Parent parent;

}


Top
 Profile  
 
 Post subject:
PostPosted: Wed Mar 14, 2007 2:11 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Mit einem XML Mapping geht das mit formula. Ein Beispiel könnte es in der Hibernate Reference geben. Bei Annotation bin ich mich mir nicht absolut sicher, vermute aber das es auch geht.

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


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

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.