-->
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: Update von Objektattributen ohne Objekt vorher zu laden
PostPosted: Thu Apr 12, 2007 10:23 am 
Newbie

Joined: Thu Apr 12, 2007 9:12 am
Posts: 1
Hallo,

Wie ändere ich nur die Attribut in einem persistenten Objekt ohne es vorher zuladen und ohne die bestehenden Assoziationen Collections zu löschen.


Mein Ansatz ist eine neues Objekt mit new zu erzeugen, die id (des persitenten Objekts) und die Attribute zu setzen, die Collection (Many-to-many) auf null zu belassen und mit <Session>.update() zu speichern.
Allerdings wird dann die Collection gelöscht, was ich nicht möchte.
Wie kann ich verhindern das der Inhalt der Collection gelöscht wird?


Beispiel:

Beipielklasse:
public class Cat{

private long id;
private String name;

private Set kittens;

// getter and setter

}


// Das Objekt ist schon persistiert mit id=3 und hat in der Collection kittens z.B. drei Cats.


Cat cat = new Cat()
cat.setId(3);
cat.setName("NewName")
// cat.kittens ist nach dem new natürlich =null

Session session = ...
session.update(cat )

Nach der Update Operation sind die drei kittens weg

Vorab Danke für Eure Hilfe.

Gruß

Patrick


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 18, 2007 9:48 am 
Regular
Regular

Joined: Thu Jan 27, 2005 8:58 am
Posts: 80
Im Zweifelsfall muss Du halt ein Update-HQL schreiben, welches Dir nur die entsprechenden Spalten aktualisiert. Abre was wäre so schlimm daran das Objekt einmal aus der DB zu holen, hast du es vor dem Speichern noch nie geladen?


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.