org.xnio.channels.FixedLengthOverflowException: null
异常中文意思:固定长度溢出异常:空
今天写了一个接口,通过restTemplate调用接口,返回集合List<Bean> 如下:
ResponseEntity<List<Bean>> response = restTemplate.exchange(url, “post”, entity, new ParameterizedTypeReference<List<Bean>>(){});
return response;
一开始是将整个ResponseEntity<List<Bean>> 返回给前端,通过postMan调用接口发现返回报文只打了一半就断了,后台代码中报异常org.xnio.channels.FixedLengthOverflowException: null
百度了半天,对这个异常的记录非常的少,搜索结果甚至一页都不到,自己又没有梯子上外网看。
【解决】:将返回的内容集合单独返回给controller层response.getBody(),在controller层重新包一层ResponseEntity。如ResponseEntity.ok(response.getBody());,就可以了。
【原因】:涉及底层,有空再扒,未知,有大牛知道的踢一下我。