标签: spring hibernate jpa
您好我想在实体级调用子表时忽略父提取。我可以用什么样的注释?
答案 0 :(得分:0)
ManyToOne的提取类型默认为EAGER,因此您需要明确声明要使用LAZY提取:
@ManyToOne(fetch = FetchType.LAZY)