简体   繁体   中英

Foreign Key in One to One RelationShip Hibernate

I have an one to one relationship between the following 2 entities:

@Entity
@Table(name = "user")
public class User {

    @Id
    @Column(name="id")
    private String id;

    @Column
    private String name;

    @Column
    private String email;

    @Column
    private String password;

    @OneToOne(cascade = CascadeType.PERSIST, fetch = FetchType.EAGER)
    @JoinColumn(name = "user_role_id", referencedColumnName = "id")
    private UserRole userRole;
@Entity
@Table(name = "userRole")
public class UserRole {

    @Id
    @Column(name="id")
    private String id;

    @Column
    private String description;

    @OneToOne(mappedBy = "userRole")
    private User user;

    public UserRole() {
    }

I also use EntityManagerFactory to create the tables in my local DB. I received this code and I have to follow it.

public class UserRepo {

    private EntityManagerFactory entityManagerFactory = Persistence.createEntityManagerFactory("ro.tutorial.lab.SD");

    public void insertNewUser(User user) {
        EntityManager em = entityManagerFactory.createEntityManager();
        em.getTransaction().begin();
        em.persist(user);
        em.getTransaction().commit();
        em.close();
    }

There is a similar UserRoleRepo too.

My problem is when instantiating in main, I don't know how to get just the UserRole id for the FK in User. Instead, I get the whole instance of userRole and the error "Duplicate entry 'b36fcb4c-3904-4205-888b-9792f24d8b5c' for key 'userrole.PRIMARY' ".

public static void main(String[] args) {
        UserRoleRepo userRoleRepo= new UserRoleRepo();

        UserRole userRole1 = new UserRole();
        userRole1.setId(UUID.randomUUID().toString());
        System.out.println(userRole1);
        userRole1.setDescription("admin");
        userRoleRepo.insertNewUser(userRole1);

        UserRole userRole2 = new UserRole();
        userRole2.setId(UUID.randomUUID().toString());
        System.out.println(userRole2);
        userRole2.setDescription("client");
        userRoleRepo.insertNewUser(userRole2);

        UserRepo userRepo= new UserRepo();

        User user = new User();
        user.setId(UUID.randomUUID().toString());
        user.setName("Todoran");
        user.setEmail("todoran@utcluj.ro");
        user.setPassword("mona");
        user.setUserRole(userRole1); //////////it breaks here :(((((
        System.out.println(user);
        userRepo.insertNewUser(user);

    }

It seemed that I got confused and the proper relationship is one to many between UserRole and User tables. Now it works fine.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM