public Object aroundReadFrom(ReaderInterceptorContext context) throws IOException, WebApplicationException {
byte[] buffer = IOUtils.toByteArray(context.getInputStream());
logger.info("The contents of request body is: \n" + new String(buffer, "UTF-8") + "\n");
context.setInputStream(new ByteArrayInputStream(buffer));
return context.proceed();
}
LoggingFilter.java 文件源码
java
阅读 22
收藏 0
点赞 0
评论 0
项目:dubbo2
作者:
评论列表
文章目录