org.apache.coyote.Response.isExceptionPresent()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(173)

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

Response.isExceptionPresent介绍

暂无

代码示例

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

if (coyoteResponse.isExceptionPresent()) {
  throw new ClientAbortException(coyoteResponse.getErrorException());

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

if (coyoteResponse.isExceptionPresent()) {
  throw new ClientAbortException(coyoteResponse.getErrorException());

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

/**
 * Flush bytes or chars contained in the buffer.
 * 
 * @throws IOException An underlying IOException occurred
 */
protected void doFlush(boolean realFlush)
  throws IOException {
  if (suspended)
    return;
  doFlush = true;
  if (initial) {
    coyoteResponse.sendHeaders();
    initial = false;
  }
  if (bb.getLength() > 0) {
    bb.flushBuffer();
  }
  doFlush = false;
  if (realFlush) {
    coyoteResponse.action(ActionCode.CLIENT_FLUSH, 
               coyoteResponse);
    // If some exception occurred earlier, or if some IOE occurred
    // here, notify the servlet with an IOE
    if (coyoteResponse.isExceptionPresent()) {
      throw new ClientAbortException
        (coyoteResponse.getErrorException());
    }
  }
}

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

/**
 * Flush bytes or chars contained in the buffer.
 * 
 * @throws IOException An underlying IOException occurred
 */
protected void doFlush(boolean realFlush)
  throws IOException {
  if (suspended)
    return;
  doFlush = true;
  if (initial) {
    coyoteResponse.sendHeaders();
    initial = false;
  }
  if (bb.getLength() > 0) {
    bb.flushBuffer();
  }
  doFlush = false;
  if (realFlush) {
    coyoteResponse.action(ActionCode.CLIENT_FLUSH, 
               coyoteResponse);
    // If some exception occurred earlier, or if some IOE occurred
    // here, notify the servlet with an IOE
    if (coyoteResponse.isExceptionPresent()) {
      throw new ClientAbortException
        (coyoteResponse.getErrorException());
    }
  }
}

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

/**
 * Flush bytes or chars contained in the buffer.
 * 
 * @throws IOException An underlying IOException occurred
 */
protected void doFlush(boolean realFlush)
  throws IOException {
  if (suspended)
    return;
  doFlush = true;
  if (initial) {
    coyoteResponse.sendHeaders();
    initial = false;
  }
  if (bb.getLength() > 0) {
    bb.flushBuffer();
  }
  doFlush = false;
  if (realFlush) {
    coyoteResponse.action(ActionCode.CLIENT_FLUSH, 
               coyoteResponse);
    // If some exception occurred earlier, or if some IOE occurred
    // here, notify the servlet with an IOE
    if (coyoteResponse.isExceptionPresent()) {
      throw new ClientAbortException
        (coyoteResponse.getErrorException());
    }
  }
}

代码示例来源:origin: tomcat/catalina

if (coyoteResponse.isExceptionPresent()) {
  throw new ClientAbortException
    (coyoteResponse.getErrorException());

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

if (coyoteResponse.isExceptionPresent()) {
  throw new ClientAbortException
    (coyoteResponse.getErrorException());

代码示例来源:origin: jboss.web/jbossweb

if (coyoteResponse.isExceptionPresent()) {
  throw new ClientAbortException
    (coyoteResponse.getErrorException());

代码示例来源:origin: jboss.remoting/jboss-remoting

if(coyoteResponse.isExceptionPresent())

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

if (coyoteResponse.isExceptionPresent()) {
  throw new ClientAbortException
    (coyoteResponse.getErrorException());

代码示例来源:origin: org.jboss.web/jbossweb

if (coyoteResponse.isExceptionPresent()) {
  throw new ClientAbortException
    (coyoteResponse.getErrorException());

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

if (coyoteResponse.isExceptionPresent()) {
  throw new ClientAbortException
    (coyoteResponse.getErrorException());

相关文章