我在jdbcRealm的配置中显然做错了。但我不知道到底是什么。
这是我的配置:
还需要什么来帮助我?
@Entity
@Table(name = "gebruiker")
public class User implements Serializable {
@Id @Column(name="User_NAME")
private String name;
@ManyToOne
@JoinTable(name = "groep_gebruiker")
private Role rol;
@Entity
@Table(name = "groep")
public class Role implements Serializable {
@Id
private String rol;
@OneToMany(mappedBy = "rol")
private Collection<User> gebruikers = new ArrayList();
答案 0 :(得分:0)
显然这是因为你没有创建JDBC领域用户/ Hans /