调用ajax,返回json, 报异常 java.lang.OutOfMemoryError: Java heap space

前端之家收集整理的这篇文章主要介绍了调用ajax,返回json, 报异常 java.lang.OutOfMemoryError: Java heap space前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

hibernate 双向多对多或一对多 通过json转换时出现死循环,导致内存溢出。


解决方案1:过滤

JsonConfig jsonConfig=new JsonConfig();
jsonConfig.setExcludes(new String[]{"tblExamRecords","tblExamAnswers","tblExamOptions"});
jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);

JSONArray jsonArray=JSONArray.fromObject(list,jsonConfig);

方案2:将双向关系改成单向

原文链接:https://www.f2er.com/ajax/166350.html

猜你在找的Ajax相关文章