-->
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: Probleme mit Update auf Fremdschlüssel
PostPosted: Mon Feb 09, 2009 1:07 pm 
Newbie

Joined: Wed Oct 29, 2008 11:19 am
Posts: 4
Moin Moin aus Hamburg, alle zusammen :-)

Wir haben ein kleines problem. Unser Datenbankmodell ist recht komplex, der Problemausschnitt jedoch ist recht klein ;-)

Auf Hibernate 3.3.1, Postgres 8.3, Spring und dem ganzen Krimskrams (hehe...) bauen wir eine kleine Webanwendung auf.

Wir haben u.a. zwei Entities: Person und Adresse - Mapping via Annotations wie folgt:

public class Person {
...
@OneToOne
@Cascade(value=org.hibernate.annotations.CascadeType.ALL)
@JoinColumn(name="idAdresse",nullable=false,updatable=true)
public Address getAddress() {
return address;
}
}

Nun hole ich mir aus der Datenbank via f.getCurrentSession().get(Person.class, 1) die Person mit der ID 1 - die Adresse wird eagerly auch gleich mit gefetched.

Anschließend lesen wir aus diversen Daten Parameter aus, die wir per Reflections setzen (sowohl in Person.class als auch in Adress.class).

wenn ich nun f.getCurrentSession.update(person) mache, wird die Person brav geupdated - jedoch nicht die Adresse. Woran kann das liegen? habe schon ganz viel mit Cascade & co herumgespielt :-)

Vielleicht habt ihr ja einen Ansatz - vielen Dank vorab!

Yanni


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.