当我们使用JSONObject向页面发送数据的时候,有时会遇到一个异常错误:Cannot call sendError() after the response has been committed
按照字面意思即是说,response对象已经关闭而无法发送错误信息,开始遇到这个问题的时候半天找不到解决的方法。以下是抛出异常的方法:
json.put("posList",pList); PrintWriter out; try{ out = response.getWriter(); out.println(json); out.flush(); out.close(); }catch(Exception e){ e.printStackTrace(); }
首先这里的pList是从数据库中查询出来的ArrayList<Position>集合对象,在这里执行json.put操作的时候就报错了,原因很简单,由于这里使用的是Hibernate框架,其默认是支持lazy加载的,即延迟加载,当我们只是向数据库中查询出来而没有使用他的时候,是不会进行加载的,也就是说,在当前put进去的json的一个子对象是null的,这样便导致了在这里卡死报错的原因。
网上有很多种说法来解决这个问题,归根到底是延迟加载导致的数据传输的错误。
这里提供一些解决方法:
1、取消延迟加载,但这样性能会发生损耗,所以不建议在这里取消延迟加载的配置
2、在获取到数据的同时,手动使用这些数据,比如手动使用get()方法来使得相应的数据得到加载。如下:
ArrayList<Position> posList = (ArrayList<Position>)positionService.findAllPosition(); ArrayList<PosListInfo> pList = new ArrayList<PosListInfo>(); for(Position pos:posList){ PosListInfo newPos = new PosListInfo(); newPos.setId(pos.getId()); newPos.setName(pos.getName()); pList.add(newPos); } json.put("posList",pList); PrintWriter out; try{ out = response.getWriter(); out.println(json); out.flush(); out.close(); }catch(Exception e){ e.printStackTrace(); }
通过这样的方式,证明可以解决这个问题。但是具体的内部原因的深究,我还是不太清楚,也希望大家能够给我一些提示和帮助。
版权声明:本文为博主原创文章,未经博主允许不得转载。