我正在使用Spring Boot并尝试使用@OneToOne JPA批注。我的课看起来像这样:
小学班级
$(LIBPATH)
第二堂课
@Entity
public class User {
....
@OneToOne(cascade = CascadeType.ALL)
@JoinColumn(name = "id", referencedColumnName = "userID")
private ForeignProfile userForeignProfile;
}
我不希望创建其他列,并且不希望使用User表中的'id'和ForeignProfile表中的userID连接这2个表。我尝试了很多组合,但无法使其正常工作。我在这里显示的配置没有任何作用。我在做什么错了?
我尝试使用此示例,但它们无法满足我的需要 https://www.baeldung.com/jpa-one-to-one