java.lang.IllegalStateException: Not supported.at org.apache.catalina.connector.
程序员文章站
2022-07-15 11:58:47
...
在使用Servlet3.0的异步特性的时候,经常会遇到如下异步,表示不支持异步特性。
在Tomcat中的异常是:
[quote]
java.lang.IllegalStateException: Not supported.
at org.apache.catalina.connector.Request.startAsync(Request.java:1673)
[/quote]
在Jetty中是:
这两个异常,表示的意思是一致的,产生的原因是一样的,都是由于在Servlet中使用了注解形式或xml中表示使用异步
此时我们如果在浏览器中发起请求,应该是支持异步的。但如果在尝试Servelt3.0的新特性时,在同一个工程中创建了Filter,并且会过滤该异步请求,此时则可能会出现问题,例如Filter配置如下:
此时请求会出现上述的Not support异常。产生原因:是请求的servlet支持异步,但此时filter不支持导致。
将Filter的注解改为如下形式即可
当然,在web.xml中增加配置也可以。
在Tomcat中的异常是:
[quote]
java.lang.IllegalStateException: Not supported.
at org.apache.catalina.connector.Request.startAsync(Request.java:1673)
[/quote]
在Jetty中是:
java.lang.IllegalStateException: !asyncSupported
at org.eclipse.jetty.server.Request.startAsync(Request.java:1982)
这两个异常,表示的意思是一致的,产生的原因是一样的,都是由于在Servlet中使用了注解形式或xml中表示使用异步
@WebServlet(urlPatterns = {"/test"}, asyncSupported = true)
此时我们如果在浏览器中发起请求,应该是支持异步的。但如果在尝试Servelt3.0的新特性时,在同一个工程中创建了Filter,并且会过滤该异步请求,此时则可能会出现问题,例如Filter配置如下:
@WebFilter(filterName="/SampleFilter",urlPatterns={"/*"})
此时请求会出现上述的Not support异常。产生原因:是请求的servlet支持异步,但此时filter不支持导致。
将Filter的注解改为如下形式即可
@WebFilter(asyncSupported=true,filterName="/SampleFilter",urlPatterns={"/*"})
当然,在web.xml中增加配置也可以。
推荐阅读
-
Android8.0 java.lang.IllegalStateException: Not allowed to start service Intent app is in background
-
android Java.lang.IllegalStateException: No activity 把自己坑了
-
java.lang.IllegalStateException: No such application config! Please add dubbo:application name
-
调用方法[manageApp]时发生异常 java.lang.IllegalStateException: 启动子级时出错
-
java.lang.IllegalStateException: Cannot call sendError() after the response has been committed解读
-
java.lang.IllegalStateException: The request associated with the AsyncContext ha
-
java.lang.IllegalStateException: No typehandler found for property params
-
mybatis 异常处理Cause: java.lang.IllegalStateException: Cannot enable lazy loading because CGLIB is not
-
java.lang.IllegalStateException:No typehandler found for property
-
解决java.lang.IllegalStateException: No instances available for service-provider] with root cause java