-->
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: ManyToOne: Foreign Key direkt setzen
PostPosted: Wed Sep 24, 2014 1:34 pm 
Newbie

Joined: Sat Sep 18, 2010 3:16 am
Posts: 5
Hallo zusammen.
Ich habe zwei Tabellen A und B.
B hält eine ManyToOne-Beziehung zu A, also

Code:
Tabelle B:
   @ManyToOne
   @JoinColumn(name = "a_id")
   private A a;

Tabelle A:
    @OneToMany(mappedBy = "a")
    private Set<B> b = new HashSet<B>();


In A ist bereits ein Datensatz mit der Id 123 gespeichert.

Ich möchte in Tabelle B einen neuen Datensatz einfügen, der auf einen Datensatz in Tabelle A mit der Id 123 verweist.
Ist möglich, die Id 123 als Foreign Key direkt anzugeben, anstelle einer Referenz des Datensatzes mit der Id 123?

Vielen Dank und Grüße,
Jan


Top
 Profile  
 
 Post subject: Re: ManyToOne: Foreign Key direkt setzen
PostPosted: Mon Oct 27, 2014 11:45 am 
Newbie

Joined: Mon Jan 13, 2014 10:17 am
Posts: 5
Hi entweder holst du dir erst mit nem select aus Tabelle A das Obket mit ID 123
session.get(TabelleA.class, 123)

oder einfach mit new
a = new TabelleA();
a.setId(123);
b.setA(a)

so in etwa, aber beim zweiten muss du gucken, wie dein cascade gesetzt ist und ob du mit save oder update speicherst...


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.