简体   繁体   中英

Hibernate transform instance to subclass

I have mapped class in JPA. :

@Entity
@Inheritance(strategy = InheritanceType.JOINED)
public class User {
    private Long id;
    private Long name;
    //getters and setters go here
    ....
}

I also have a subclass of this class, called Admin:

@Entity
public class Admin extends User {
    private String cridentials;
    //getters and setters go here
    ....
}

Now in my code I have managed instance of User attached to the session

...
User user = entityManager.find(User.class, userId)

I need to transform this user to its subclass, Admin. This means I need 'User' table data remain untouched and new row to be inserted into 'Admin' table:

javax.persistence.EntityManager entityManager = ...;
...
User user = entityManager.find(User.class, userId)
Admin admin = new Admin();
admin.setName(user.getName());

entityManager.persist(admin);

But after I execute the last line, another row is inserted in both User and Admin tables. How would I solve this?

The only way I found so far is to save the fields of a User somewhere, then delete this instance from DB, and then create new Admin with all the data from User class. But I bet there is much better way of doing this.

Thanks

(...) But after I execute the last line, another row is inserted in both User and Admin tables. How would I solve this?

Well, you created a new instance of Admin and called persist on it so this is exactly what you told Hibernate to do. Try to downcast the fetched User instance as Admin instead (not tested).

But there is IMO something broken with your design, you should assign some kind of role instead of using inheritance here.

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