如果有@Embeddable ID,如何正确插入@Entity

时间:2017-07-05 12:29:59

标签: java mysql spring hibernate

这是我的代码

用户类

@Entity
public class User implements Serializable{

    /**
     * 
     */
    private static final long serialVersionUID = 1L;

    @Id
    @Column
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Integer id;

    @Column
    private String username;

    @OneToMany(fetch=FetchType.EAGER)
    @JoinColumn(name="APP_USER_ID", referencedColumnName="id")
    private List<UserRole> roles;

    @Column
    private String email;

    @Column
    private String password;

    protected User(){

    }

    public User(String username, String email, String password, List<UserRole> roles){
        this.username = username;
        this.email= email;
        this.password= password;
        this.roles= roles;
    }

UserRole Class

@Entity
@Table(name = "user_role")
public class UserRole {
    @Embeddable
    public static class Id implements Serializable {
        private static final long serialVersionUID = 1322120000551624359L;

        @Column(name = "APP_USER_ID")
        protected Integer userId;

        @Enumerated(EnumType.STRING)
        @Column(name = "ROLE")
        protected Role role;

        public Id() { }

        public Id(Integer userId, Role role) {
            this.userId = userId;
            this.role = role;
        }
    }

    @EmbeddedId
    Id id = new Id();

    @Enumerated(EnumType.STRING)
    @Column(name = "ROLE", insertable=false, updatable=false)
    protected Role role;

    public Role getRole() {
        return role;
    }
}

这些是数据库中的表

  • 用户表 - &gt; | id |电子邮件|密码|用户名|
  • user_role表 - &gt; |角色| APP_USER_ID |

在这个项目中,一个用户可以拥有多个角色。 在我的服务类中,我试图像这样保存用户(下面的代码不起作用,它更像是伪代码,但根据我目前的理解,我觉得我应该遵循这种方法),< / p>

return userRepository.save(new User(username, email, encoder.encode(password)), 
            new List<UserRole>(){{
                add(//create a new UserRole...);
            }}));

我是spring / hibernate的新手,我无法弄清楚如何使用hibernate将用户正确插入数据库。

1 个答案:

答案 0 :(得分:0)

UserRole类没有任何带有任何参数的构造函数,所以你不能写这个:new UserRole(USERID,"ADMIN"),但是你想要通过内部类创建userId { {1}}所以你可能需要这样写:Id