Hibernate一对一映射如何获取当前候选者的状态

时间:2018-02-08 05:10:45

标签: hibernate spring-mvc

我有两个候选表和状态表。在候选表中,candId作为主键,在状态表中是外键。

我只需要在jsp中获取特定候选人的状态即可。 如何获得当前候选人的状态

1 个答案:

答案 0 :(得分:1)

让我们考虑您的候选人和地位类如下:
Candidate.class

@Entity
public class Candidate{

    private int id;

    private String name;

    private String surname;

    @OneToOne
    private Status status;
}

Status.class

@Entity
public class Status{

    private int id;

    private String value;
}

如果您需要有关Hibernate OneToOne映射的更多信息,请访问此link