-->
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: Using manytoone object as primary key for entity
PostPosted: Thu Nov 08, 2012 8:23 am 
Newbie

Joined: Thu Nov 08, 2012 8:17 am
Posts: 1
Hello,

I'm new to hibernate. I have an object which contains a ManyToOne relation with another entity. I want that object to be the foreign key.

For a better understanding of my problem:

Code:
*/
@Entity
@Table(name = "Employee")
public class Employee implements Serializable {

    @Column(name = "name")
    private String firstname;
    @Column(name = "insertion")
    private String insertion;
    @Column(name = "lastname")
    private String lastname;
    @Column(name = "adres")
    private String adres;
    @Id
    @ManyToOne
    private User user;


The object user contains the primary key I want to use for the entity Employee. If I put the @Id annotation, it is wrong and I get an error.

Does anyone know a good solution? Thank you!


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.