-->
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: OneToOne and OneToMany no join table
PostPosted: Tue Nov 30, 2010 7:35 am 
Newbie

Joined: Tue Nov 30, 2010 7:09 am
Posts: 1
Is something like that going to work ????

Two classes mapped on two tables only - no join tables . OneToOne - bidirectional and ManyToOne unidirectional relationship
Seminar can have multiple students<Users> ,seminar has one owner, user can be an owner of multiple seminars, user can take part in multiple seminars

Is the mapping going to work
@Entity
public class Seminar {

@Id
@GeneratedValue
private long id;

@OneToOne
private User seminarOwner;
@OneToMany(mappedBy="seminar")
private List<Two> seminarStudents;


private int counting;
}

@Entity
public class Two {

@Id
@GeneratedValue
private long id;

@OneToOne(mappedBy="two")
private Seminar seminar;
}


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.