websocket传输数据大小限制_websocket设置传输大小

tomcat中有提到:

If the application does not define a MessageHandler.Partial for incoming text messages, any incoming text messages must be buffered so the entire message can be delivered in a single call to the registered MessageHandler.

Whole for text messages. The default buffer size for text messages is 8192 bytes. This may be changed for a web application by setting the servlet context initialization parameter org.apache.tomcat.websocket.

textBufferSize to the desired value in bytes.

1、对项目web.xml添加如下配置(注意单位为byte)

org.apache.tomcat.websocket.textBufferSize

5242800

2、对于spring工程来说这个方法没问题可以生效,但是springboot并没有web.xml该如何解决呢?如下:

@Configuration

@ComponentScan

@EnableAutoConfigurationpublic class WebSocketConfig implementsServletContextInitializer{//配置websocket传输大小,50M

@Overridepublic void onStartup(ServletContext servletContext) throwsServletException {

servletContext.addListener(WebAppRootListener.class);

servletContext.setInitParameter("org.apache.tomcat.websocket.textBufferSize","52428800");

servletContext.setInitParameter("org.apache.tomcat.websocket.binaryBufferSize","52428800");

}

}

注意:在使用的时候还发现了一个问题,如上配置假如是以springboot内置tomcat启动是没有问题的,但是打成war后使用外置tomcat运行却不生效,最终发现是因为外置tomcat版本问题,出问题的版本是tomcat8.0.xx,而使用tomcat8.5.xx就没有这个问题了

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值