-->
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: Hibernate Annotations und Oracle Sequenzen
PostPosted: Wed Aug 23, 2006 11:35 am 
Newbie

Joined: Thu Nov 10, 2005 7:21 pm
Posts: 4
Location: Germany
Hallo,

ich nutzte Hibernate mit Annotations und bin nun auf folgende "Unschönheit" gestossen.

Code:
@Table(name="TAB1")
public class Table ... {
    ...
    @Id
    @GeneratedValue(generator = "hibseq")
    @GenericGenerator(name = "hibseq", strategy = "sequence", parameters = { @Parameter(name = "sequence", value = "SEQ_TAB1") })
    public Long getId() {
        return this.id;
    }
    ...


Jede Tabelle nutzt eine eigen Sequenz zur Erzeugung eines ID Wertes.

Die Frage ist jetzt kann man es irgendwie einfacher Konfigurieren/Implementieren, dass für jede Tabelle eben eine SEQ genutzt wird, wobei die Sequenz immer als präfix "SEQ_" hat und dann vom Tabellennamen gefolgt.
Ich möchte erreichen, die beiden Zeilen "@GeneratedValue" und "@GenericGenerator" zu sparen...bzw. das Teil @Id in eine Eltern-Klasse zu verlagern...damit ich das nicht in jeder Klasse wieder reinschreiben muss.

Hat einer eine Idee?

Vielen Dank im Voraus.
MfG
Karl Heinz


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.