本文整理了Java中org.apache.coyote.Response.sendHeaders
方法的一些代码示例,展示了Response.sendHeaders
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Response.sendHeaders
方法的具体详情如下:
包路径:org.apache.coyote.Response
类名称:Response
方法名:sendHeaders
[英]Signal that we're done with the headers, and body will follow. Any implementation needs to notify ContextManager, to allow interceptors to fix headers.
[中]发出信号,我们已经完成了头球,身体也会跟着。任何实现都需要通知ContextManager,以允许拦截器修复头文件。
代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core
@Override
public int doWrite(ByteBuffer chunk) throws IOException {
if (!coyoteResponse.isCommitted()) {
coyoteResponse.sendHeaders();
}
return next.doWrite(chunk);
}
代码示例来源:origin: org.glassfish.metro/webservices-extra
res.sendHeaders();
代码示例来源:origin: org.apache.tomcat/tomcat-catalina
doFlush = true;
if (initial) {
coyoteResponse.sendHeaders();
initial = false;
代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core
doFlush = true;
if (initial) {
coyoteResponse.sendHeaders();
initial = false;
代码示例来源: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
} else if (state == INITIAL_STATE) {
coyoteResponse.sendHeaders();
代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina
doFlush = true;
if (initial) {
coyoteResponse.sendHeaders();
initial = false;
代码示例来源:origin: jboss.web/jbossweb
coyoteResponse.sendHeaders();
initial = false;
代码示例来源:origin: jboss.remoting/jboss-remoting
coyoteResponse.sendHeaders();
代码示例来源:origin: org.jboss.web/jbossweb
coyoteResponse.sendHeaders();
initial = false;
代码示例来源:origin: codefollower/Tomcat-Research
doFlush = true;
if (initial) {
coyoteResponse.sendHeaders();
initial = false;
代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina
doFlush = true;
if (initial) {
coyoteResponse.sendHeaders();
initial = false;
代码示例来源:origin: org.apache.coyote.springsource/com.springsource.org.apache.coyote.springsource
public int doWrite(ByteChunk chunk, Response res)
throws IOException {
if (!res.isCommitted()) {
// Send the connector a request for commit. The connector should
// then validate the headers, send them (using sendHeader) and
// set the filters accordingly.
res.sendHeaders();
}
int len=chunk.getLength();
byte buf[]=outputMsg.getBuffer();
// 4 - hardcoded, byte[] marshalling overhead
int chunkSize=buf.length - outputMsg.getHeaderLength() - 4;
int off=0;
while( len > 0 ) {
int thisTime=len;
if( thisTime > chunkSize ) {
thisTime=chunkSize;
}
len-=thisTime;
outputMsg.reset();
outputMsg.appendByte( AjpConstants.JK_AJP13_SEND_BODY_CHUNK);
if( log.isTraceEnabled() )
log.trace("doWrite " + off + " " + thisTime + " " + len );
outputMsg.appendBytes( chunk.getBytes(), chunk.getOffset() + off, thisTime );
off+=thisTime;
mc.getSource().send( outputMsg, mc );
}
return 0;
}
内容来源于网络,如有侵权,请联系作者删除!