繁体   English   中英

JPA休眠一对多

[英]JPA Hibernate one to many

我对JPA中一对多的工作方式感到困惑,我阅读的所有文档在其示例中都使用了一对多和多对一的方式,而且我不知道它们是否是必需的,并且不起作用当我尝试过。

我的问题是,假设我有两个表,并且我想使用findCollegeData()方法填充College对象,以便在初始化对象时该学院的所有学生都在列表中。

下面是我的方法,我可以使用storeCollegeData()方法将所有学生存储在大学列表中,但是我无法完全检索该大学对象,即使数据在数据库中,学生列表也始终为空,并且如果我尝试直接使用大学名称搜索学生的话,该方法也适用。

public static EntityManager entityManager = something;

@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
public College {
    @Id   
    @GeneratedValue(strategy= GenerationType.AUTO)
    private int cId;
    private String collegeName;
    private int numOfStudent;

    @OneToMany(mappedBy="collegeName", cascade=CascadeType.ALL, orphanRemoval=true)
    private List<Student> studentList = new ArrayList<>();
}


@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
public Student {
    @Id
    @GeneratedValue(strategy= GenerationType.AUTO)
    private int sId;
    private String name;
    private String collegeName;
    private String city;
}


// college.getStudentList is always empty and I don't know why
public findCollegeData(String collegeName) {
    College college = entityManager.find(College.class, collegeName);
}

// Student data in the studentList are inserted into student table
public storeCollegeData(College college) {
    entityManager.persist(college);
}

// This method works
public findStudent(String collegeName) {

    CriteriaBuilder cb = provider.get().getCriteriaBuilder();
    CriteriaQuery<Student> query = cb.createQuery(Student.class);
    Root<Student> student = query.from(Student.class);

    query.where(
            cb.and(
                    cb.equal(student.get("collegeName"), collegeName)
            )
    );

    JobStatisticDB Student = provider.get().createQuery(query).getSingleResult();
}

我想念什么吗??? 加入比这里的地图更合适吗??? 我不知道做男人的w

编辑:通过添加@Id批注将两个collegeName更改为表的主键,使其起作用,但是,如何将sId和cId添加到表中,以便它们可以具有重复的大学名称? 现在,我不能有重复的同名大学和去同一所大学的学生!

最终编辑:更改数据库设计以使用外键,请参见下面的解决方案

您在mappedBy引用的字段必须包含等于College的id字段的值。 将其更改为collegeName而不是city ,它应该可以工作。

接受的答案不正确:您定义了实体之间的关系。 双向@OneToMany的映射应如下所示

学院:

@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
public College {
    @Id   
    @GeneratedValue(strategy= GenerationType.AUTO)
    private int cId;
    private String collegeName;
    private int numOfStudent;

    @OneToMany(mappedBy="college", cascade=CascadeType.ALL, orphanRemoval=true)
    private List<Student> studentList = new ArrayList<>();
}

学生:

@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
public Student {
    @Id
    @GeneratedValue(strategy= GenerationType.AUTO)
    private int sId;
    private String name;
    private String city;

    //student table has a FK column college_id 
    @ManyToOne
    @JoinColumn(name = "college_id")
    private College college;
}

EntityManager find()将PK作为参数:

public findCollege(int collegeId) {
    College college = entityManager.find(College.class, collegeId);
    college.getStudents(); //will be populated
}

public findStudent(int studentId) {
    Student student = entityManager.find(Student.class, studentId);
    student.getCollege(); //will be populated
    student.getCollege().getStudents(); //will be populated
}

如果要按名称查找大学,请创建JPQL或Criteria查询:

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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