-->
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: Hüllklasse oder primitiver Typ für synthetische ID?
PostPosted: Tue Apr 15, 2008 5:09 am 
Regular
Regular

Joined: Thu Apr 14, 2005 10:39 am
Posts: 115
Hi,

sind beide Versionen überhaupt möglich?
Sollten eigentlich beide möglich sein, habe in Beispielen jedoch nur welche mit Hüllklase gefunden. Könnte jedoch sein dass der Generator eine Hüllklase benötigt, ist das so?

Wenn ja, was sind die Vor und Nachteile der Lösungen und welche ist im allgemeinen zu bevorzugen?


Code:
@Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    @SuppressWarnings("unused")
    private Long id;


oder

Code:
@Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    @SuppressWarnings("unused")
    private long id;


Bei Klassen, bei denen equals und hashcode überschrieben wurde, ist hier eine synthetische ID
überhaupt sinnvoll?

Für die DB sind dann 2 Objekte verschieden, obwohl sie aufgrund Ihres Inhaltes gleich sind. Dies könnte evtl. zu Problemen führen. Während die in equals verwendeten Attribute i.d.R. einen Compound-key darstellen und damit spätere Änderungen erschweren.

Vielen Dank.

Viele Grüße Michael


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 21, 2008 4:42 pm 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Equals und hashcode müssen nur dann implementiert werden, wenn man Objekte, die detached sind in ein Set/Map legen möchte.

wikipedia hat einige Erläuterungen zu natural primary key.

_________________
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.