-->
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: Vererbung mit extends funktioniert nicht
PostPosted: Fri Aug 24, 2007 7:39 am 
Beginner
Beginner

Joined: Wed Jul 18, 2007 6:13 am
Posts: 28
Hallo alle zusammen

Die Klasse ABC hat eine Vererbung nach DEF. DEF erbt wiederrum von GHI. In der Hibernate.cfg.xml mappe ich zunächste GHI, danach DEF und zuletzt ABC.
Normalerweise würde ich erwarten, dass bei der Erstellung der Tabelle ABC die Attribute id und vorname aus der Klasse GHI übernommen werden. Das macht Hibernate irgendwie nicht. Hat jemand eine Idee woran das liegen könnte?
Ich habe die Vermutung, dass die Annotations nicht mitvererbt werden. Gibt es für dieses Probleme eine Lösung?

Gruß,
AK


@Entity
@Table(name = "ABC")
public class ABC extends DEF Serializable {

@Column(name = "Name", length = 32)
private String archivnummer;
}

public abstract class DEF extends GHI implements Serializable {

...
}


public abstract class GHI implements Serializable {

@Id
@SequenceGenerator(name = "sequence", sequenceName = "SEQ_GHI", initialValue = 1, allocationSize = 1)
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "sequence")
@Column(name = "PK_ID", columnDefinition = "NUMBER")
private long id;

@Column(name = "Vorname", columnDefinition = "VARCHAR2(20)")
String vorname;
}


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 27, 2007 11:26 am 
Beginner
Beginner

Joined: Wed Jul 18, 2007 6:13 am
Posts: 28
Bin mal wieder selber drauf gekommen :-)

Funktioniert mit @MappedSuperclass


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.