smile_elims

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
解决办法:在属性的get方法上加上一段注解标识它是临时属性,不是数据库字段就OK
@Transient
public List<Reverts> getChildList() {
return childList;
}
public void setChildList(List<Reverts> childList) {
this.childList = childList;
}

记得导入的是:import javax.persistence.Transient;

 

posted on 2016-01-11 10:35  smile_elims  阅读(1198)  评论(0编辑  收藏  举报