hibernate 直接用懒加载属性显示数据为空

来源:互联网 发布:万象数据库默认密码 编辑:程序博客网 时间:2024/05/21 21:37

今天页面上一个属性显示不出来,可数据库确存在,感觉有些奇怪,遂检查代码。

debug模式发现懒加载的实体数据为空

解决调用该实体,并赋值到model。

model.addAttribute("carTypePrice", carSource.getCarType().getPriceStr());//懒加载需要调用查询

其中carSource为实体,getCarType为懒加载实体

也可以在实体上注释为(fetch = FetchType.EAGER)
@OneToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "logistics_info_id")
@JsonBackReference
private LogisticsInfo logisticsInfo;