开发者社区> 问答> 正文

CXF 拦截器将返回内容进行加密?报错

 目前写了一个后台程序,对外提供接口是用cxf写 的webservice

安全方面的考虑要对返回数据进行加密

所以用了拦截器机制 继承AbstractPhaseInterceptor<Message>

super(Phase.PRE_STREAM);    // 触发点在流关闭之前

主要代码 基本也是网上的

 public void handleMessage(Message message) {   

OutputStream os = message.getContent(OutputStream.class);  
                 CachedStream cs = new CachedStream();  
                 message.setContent(OutputStream.class, cs);  
                 message.getInterceptorChain().doIntercept(message);  
                 CachedOutputStream csnew = (CachedOutputStream) message.getContent(OutputStream.class);  
                 InputStream in = csnew.getInputStream();  

String result = getRetern(IOUtils.toString(in,"UTF-8"));

IOUtils.copy(new ByteArrayInputStream(result.getBytes("UTF-8")), os);  
       
                 cs.close();  
                 os.flush();  
                 message.setContent(OutputStream.class, os);  

  }  

返回的数据是用的json格式

当数据量小时没问题,但是一旦数据量过大就会报错 出现

Unexpected EOF in prolog

展开
收起
爱吃鱼的程序员 2020-06-09 16:06:32 648 0
1 条回答
写回答
取消 提交回答
  • https://developer.aliyun.com/profile/5yerqm5bn5yqg?spm=a2c6h.12873639.0.0.6eae304abcjaIB

    数据量大的时候报错的问题,您解决了吗?

    2020-06-09 16:06:48
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
基于可信计算与加密计算 打造云上原生计算安全 立即下载
视频服务特色解决方案——直播连麦与点播加密 立即下载
量子加密通信技术 立即下载