-->
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: @OneToMany - User->Contacts
PostPosted: Tue Nov 11, 2008 1:49 pm 
Newbie

Joined: Tue Nov 11, 2008 1:39 pm
Posts: 1
Hallo zusammen,

ok zunächsteinmal sind meine Erfahrungen zu Hibernate noch ausbauend *hust*
Zu meinem Problem:

Ich habe eine Klasse User welche Kontakte haben kann die wiederum User sind. Gelöst habe ich das mit einer @OneToMany Beziehung in der ich die Tabelle 'user_contact' defniert habe. Also Benutzer hinzufügen klappt und löschen auch. Mein Problem ist das beim Löschen die Beziehung in der user_contact Tabelle bestehen bleibt. Sie wird beim Löschen der Benutzer nicht mitgelöscht. Was mache ich hier falsch?
Ist die Beziehung so überhaupt richtig gelöst?

Bin für jeden Hinweis dankbar.


Viele Grüße
Meleagros

Die Klasse sieht (kurz) so aus:


Code:

@Entity
@Table(uniqueConstraints={@UniqueConstraint(columnNames={"name"})})
public class User implements Serializable{
   private static final long serialVersionUID = -3769279009515839993L;

   @Id
   @GeneratedValue(strategy=GenerationType.IDENTITY )
   private Integer id;

   private String name;
   
   private String firstName;
   
   private String lastName;
   
   @OneToMany(cascade=CascadeType.ALL,fetch=FetchType.EAGER)
   @JoinTable(name="user_contact", joinColumns={@JoinColumn(name="user_id")})
   private Set<User> contacts = new HashSet<User>();

}



Top
 Profile  
 
 Post subject:
PostPosted: Thu Nov 20, 2008 4:39 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Hallo,

Du musst Deine Collection vor dem Löschen aufräumen, sprich die Objekte daraus entfernen.

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