-->
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: Heritage SINGLE_TABLE et sous-classe de sous-classe
PostPosted: Wed Apr 01, 2009 2:34 am 
Newbie

Joined: Fri Jun 30, 2006 3:44 am
Posts: 5
Hibernate version: 3.3.1

Bonjour

Voilà mon problème : j'ai un héritage à trois niveaux qui doit être mappé dans une seule table ( je n'ai pas le loisir de modifier la table de la base)
A <--- AB <--- ABC
J'utilise donc un héritage par SINGLE_TABLE et souhaite utiliser les deux champs de discrimination existants dans la table


@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatoColumn(name="CA",discriminatorType=DiscriminatorType.INTEGER)
@Table="TableA"
public class A
{
...
}

@Entity
@DiscriminatorValue("1")
@DiscriminatoColumn(name="CAB",discriminatorType=DiscriminatorType.STRING)
public class AB extends A
{
...
}


@Entity
@DiscriminatorValue("ABC")
public class ABC extends AB
{
...
}



Cela ne fonctionne pas au niveau des requêtes générées par Hibernate.
Je n'ai trouvé nulle par dans la documentation s'il était possible ou non d'avoir plusieurs colonnes de discriminants ?

Merci d'avance


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.