OneToOne; @Entity public class Student { @Id private int id; private String name; @OneToOne(fetch = FetchType.LAZY) private Address address; ...
確定! 回上一頁