-->
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: Persist von OneToMany nach null-Wert
PostPosted: Fri May 23, 2008 4:04 am 
Newbie

Joined: Fri May 23, 2008 3:41 am
Posts: 1
[b]Hibernate version: 3.2.1
[b]Mapping documents: Mapping by Annotations
[b]Name and version of the database you are using: mysql 5.1


Hallo Leute,

ich habe folgendes Problem:
Ich habe eine Entitiy A mit einer OneToMany-Beziehung zu einer Entitiy B (in Java: List). Diese kann auch null sein (unidirektional).
Hier gibt's dann 2 relevante Fälle:
1.) A wird mit ein oder mehreren B's verknüpft und persistiert. --> Funktioniert
2.) A hat beim ersten Persistieren keine B's. Beim 2.Persistieren (also mergen) werden B's hinzugefügt. ---> Funktioniert nicht!

Die Tabellen:
- A --> passt
- B --> passt
- A_B --> Einträge werden nicht hinzugefügt.

hier noch der Ablauf im Code:
Fall 1:
- Persist alle B's
- Persist A

Fall 2:
- Persist alle B's
- Merge A

mfg,
kegmeon


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jun 01, 2008 9:48 am 
Newbie

Joined: Sun Jun 01, 2008 7:03 am
Posts: 3
Hallo,

ich hatte das Problem auch mal. Kann ich vermuten, dass du sowas hast:

Code:
@Entity
class B {
   List<A> meineListe;
}

@Entity
class A {
    Long id;
}


Mir hats geholfen, in dem Fall meineListe gleich zu initialisieren:
Code:
List<A> meineListe = new ArrayList<A>();


Ansonsten poste doch mal, wie deine Entities und dein Code aussehen (kleines Beispiel).


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.