Servlet - 在unMarshalException的情况下记录输入流

时间:2015-11-17 15:43:21

标签: java jaxb unmarshalling

在unmarshalException的情况下,是否有任何好的替代方法来记录传入的主体,而不是像:

try{
   byteRequest = IOUtils.toByteArray(request.getInputStream());
   jaxbRequest = unMarshaller.unmarshal(new ByteArrayInputStream(byteRequest));
} catch (UnmarshalException ex) {
   LOG.error("Exception unmarshalling: {}", new String(byteRequest, "UTF-8"), ex);
}

0 个答案:

没有答案