org.apache.catalina.Wrapper.isAsyncSupported()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(3.2k)|赞(0)|评价(0)|浏览(138)

本文整理了Java中org.apache.catalina.Wrapper.isAsyncSupported()方法的一些代码示例,展示了Wrapper.isAsyncSupported()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Wrapper.isAsyncSupported()方法的具体详情如下:
包路径:org.apache.catalina.Wrapper
类名称:Wrapper
方法名:isAsyncSupported

Wrapper.isAsyncSupported介绍

[英]Does the associated Servlet support async processing? Defaults to true
[中]关联的Servlet是否支持异步处理?默认为true

代码示例

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

private Set<String> getNonAsyncClassNames() {
  Set<String> result = new HashSet<>();
  Wrapper wrapper = getWrapper();
  if (!wrapper.isAsyncSupported()) {
    result.add(wrapper.getServletClass());
  }
  FilterChain filterChain = getFilterChain();
  if (filterChain instanceof ApplicationFilterChain) {
    ((ApplicationFilterChain) filterChain).findNonAsyncFilters(result);
  } else {
    result.add(sm.getString("coyoteRequest.filterAsyncSupportUnknown"));
  }
  Container c = wrapper;
  while (c != null) {
    c.getPipeline().findNonAsyncValves(result);
    c = c.getParent();
  }
  return result;
}

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

private Set<String> getNonAsyncClassNames() {
  Set<String> result = new HashSet<>();
  Wrapper wrapper = getWrapper();
  if (!wrapper.isAsyncSupported()) {
    result.add(wrapper.getServletClass());
  }
  FilterChain filterChain = getFilterChain();
  if (filterChain instanceof ApplicationFilterChain) {
    ((ApplicationFilterChain) filterChain).findNonAsyncFilters(result);
  } else {
    result.add(sm.getString("coyoteRequest.filterAsyncSupportUnknown"));
  }
  Container c = wrapper;
  while (c != null) {
    c.getPipeline().findNonAsyncValves(result);
    c = c.getParent();
  }
  return result;
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

servlet, request, response);
if (request.isAsyncSupported()
    && !support.getWrapper().isAsyncSupported()) {
  request.setAttribute(Globals.ASYNC_SUPPORTED_ATTR,
      Boolean.FALSE);

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

servlet, request, response);
if (request.isAsyncSupported()
    && !support.getWrapper().isAsyncSupported()) {
  request.setAttribute(Globals.ASYNC_SUPPORTED_ATTR,
      Boolean.FALSE);

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

servlet, request, response);
if (request.isAsyncSupported()
    && !support.getWrapper().isAsyncSupported()) {
  request.setAttribute(Globals.ASYNC_SUPPORTED_ATTR,
      Boolean.FALSE);

代码示例来源:origin: codefollower/Tomcat-Research

servlet, request, response);
if (request.isAsyncSupported()
    && !support.getWrapper().isAsyncSupported()) {
  request.setAttribute(Globals.ASYNC_SUPPORTED_ATTR,
      Boolean.FALSE);

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

servlet, request, response);
if (request.isAsyncSupported()
    && !support.getWrapper().isAsyncSupported()) {
  request.setAttribute(Globals.ASYNC_SUPPORTED_ATTR,
      Boolean.FALSE);

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

servlet, request, response);
if (request.isAsyncSupported()
    && !support.getWrapper().isAsyncSupported()) {
  request.setAttribute(Globals.ASYNC_SUPPORTED_ATTR,
      Boolean.FALSE);

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

filterChain.setServletSupportsAsync(wrapper.isAsyncSupported());

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

filterChain.setServletSupportsAsync(wrapper.isAsyncSupported());

相关文章