A filter or servlet of the current chain does not support asynchronous operations. 错误解决记录...

做视频文件上传一直报这个错误:

java.lang.IllegalStateException: A filter or servlet of the current chain does not support asynchronous operations.

 

后来在网上查了原因分析如下:主要是 为servlet或者filter设置启用异步支持:<async-supported>true</async-supported>

1、

如果使用web.xml设置过滤器,则可以设置<async-supported>标签为true:

<filter>    

    <filter-name>AsyncFilter</filter-name>

    <filter-class>cc.openhome.AsyncFilter</filter-class>   

    <async-supported>true</async-supported>

</filter>

 

2、

使用@WebServlet来标注,则可以设置其asyncSupported为true。

例如: @WebServlet(urlPatterns = "/some.do", asyncSupported = true)

若其前端有过滤器,则过滤器亦需标示其支持异步处理,如果使用@WebFilter,同样可以设置其asyncSupported为true。

例如: @WebFilter(urlPatterns = "/some.do", asyncSupported = true) public class AsyncFilter implements Filter{ ...

 

总结了方法进行检查,有一个编码的过滤一直被我忽略了 <filter-name>encodingFilter</filter-name>对其也设置了<async-supported>true</async-supported> 。

重启问题,ok不报错了!

转载于:https://www.cnblogs.com/yskcoder/p/4564249.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值