Jimmy小站

小明也有大梦想 — 蒋明/铭
当前位置:网站首页 / 未分类 / 正文

hibername 关系双向引导 导致@ResponseBody返回Json数据无限递归

2016-04-10 / 未分类 / 3096 次围观 / 0 次吐槽

错误提示:java.lang.util  stackOverFlow.  栈溢出


解决办法:在对象中 的一方 成员变量的前面加入@JsonIgnore

public class Shoprecords implements java.io.Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private Integer id;
	@JsonIgnore
	private Producttable producttable;
	@JsonIgnore
	private User user;
	private Integer number;
	private Date shopDate;

	public Shoprecords() {
	}

	public Shoprecords(Producttable producttable, User user, Integer number, Date shopDate) {
		this.producttable = producttable;
		this.user = user;
		this.number = number;
		this.shopDate = shopDate;
	}

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public Producttable getProducttable() {
		return this.producttable;
	}

	public void setProducttable(Producttable producttable) {
		this.producttable = producttable;
	}

	public User getUser() {
		return this.user;
	}

	public void setUser(User user) {
		this.user = user;
	}

	public Integer getNumber() {
		return this.number;
	}

	public void setNumber(Integer number) {
		this.number = number;
	}

	public Date getShopDate() {
		return this.shopDate;
	}

	public void setShopDate(Date shopDate) {
		this.shopDate = shopDate;
	}

	@Override
	public String toString() {
		return "Shoprecords [idddddddddd=" + id + ", producttable=" + producttable
				+ ", number=" + number + ", shopDate="
				+ shopDate + "]";
	}

}

其中User(用户)能够引导到多个Shoprecords(购物记录),所以要阻止购物记录再次引导到用户,导致无限递归。故在多的一方 成员变量中加入@JsonIgnore

推荐您阅读更多有关于“hibernate,”的文章

[一个Java程序猿的转型之路,读研深造,专注机器学习推荐算法]
本站所有文章如无特别注明均为原创。作者:吉米酱 ,复制或转载请以超链接形式注明转自 Jimmy小站
原文地址《hibername 关系双向引导 导致@ResponseBody返回Json数据无限递归
额 本文暂时没人评论 来添加一个吧

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

Copyright © Jimmy小站 Allrights Reserved.备案号:桂ICP备 15005996