-->
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: Superklassen-Objekt zu Subklassen-Objekt updaten
PostPosted: Wed Aug 29, 2007 12:26 pm 
Newbie

Joined: Wed Aug 29, 2007 11:59 am
Posts: 1
Hallo.

Also ich stehe vor folgendem Problem:
Ich habe eine Generalisierungsbeziehung, sagen wir,
GeneralEntity sowie SpecialEntity, welches eine Subklasse von GeneralEntity ist. Der Primary Key ist ein auto-generierter Wert, die SpecialEntity-Tabelle ist per Foreign Key mit dem Primary Key von GeneralEntity verknüpft.

Angenommen, es existiert bereits eine GeneralEntity mit ID 2.
Ich möchte nun die bestehende GeneralEntity zu einer SpecialEntity erweitern - ist das irgendwie möglich?

Ich habe ein wenig herumprobiert, letztlich läuft es auf ein Löschen (
Code:
Session.delete(entity)
), Kopieren der Attribute in eine neue Instanz von SpecialEntity sowie Neuanlegen (
Code:
Session.save(newEntity)
) hinaus, wobei sich natürlich die ID ändert.
Ansonsten kommt es zu diversen, logischen Exceptions.

Die andere Möglichkeit ist per
Code:
Session.createSQLQuery("insert into SpecialEntity (id, attr1, ...) values (2, 'val', ...);").executeUpdate();
, aber SQL-Code möchte ich vermeiden.

Gibt es dafür keine "elegantere" Möglichkeit?

Vielen Dank im Voraus.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 04, 2007 7:37 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Ich bin mir nicht sicher, ob man probieren kann ein "Discriminator" Feld zu schreiben. Evt. hilft ein CustomDiscriminator oder ein CustomPersister, um Klassen im laufenden Betrieb zu aendern.
Ich würde dann aber die Instanz aus dem First und dem Secondlevel Cache werfen.

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