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

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

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

Request.getResponse介绍

暂无

代码示例

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

  1. public long getRequestBytesSent() {
  2. return req.getResponse().getContentWritten();
  3. }

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

  1. public long getRequestBytesSent() {
  2. return req.getResponse().getBytesWritten();
  3. }

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

  1. public long getRequestBytesSent() {
  2. return req.getResponse().getBytesWritten();
  3. }

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

  1. public long getRequestBytesSent() {
  2. return req.getResponse().getContentWritten();
  3. }

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

  1. public long getRequestBytesSent() {
  2. return req.getResponse().getBytesWritten();
  3. }

代码示例来源:origin: org.glassfish.metro/webservices-extra

  1. protected MimeHeaders getHeaders(Request request) {
  2. return request.getResponse().getMimeHeaders();
  3. }

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

  1. public long getRequestBytesSent() {
  2. return req.getResponse().getContentWritten();
  3. }

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

  1. public long getRequestBytesSent() {
  2. return req.getResponse().getContentWritten();
  3. }

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

  1. public long getRequestBytesSent() {
  2. return req.getResponse().getContentWritten();
  3. }

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

  1. private void clearNonBlockingListeners() {
  2. processor.getRequest().listener = null;
  3. processor.getRequest().getResponse().listener = null;
  4. }
  5. }

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

  1. private void clearNonBlockingListeners() {
  2. processor.getRequest().listener = null;
  3. processor.getRequest().getResponse().listener = null;
  4. }

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

  1. /** The high level request object associated with this context
  2. */
  3. public final void setRequest( Request req ) {
  4. this.req=req;
  5. req.setInputBuffer(jkIS);
  6. Response res = req.getResponse();
  7. res.setOutputBuffer(jkIS);
  8. res.setHook(this);
  9. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getBytesWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getBytesWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getContentWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

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

  1. /** Called by the processor before recycling the request. It'll collect
  2. * statistic information.
  3. */
  4. void updateCounters() {
  5. bytesReceived+=req.getBytesRead();
  6. bytesSent+=req.getResponse().getBytesWritten();
  7. requestCount++;
  8. if( req.getResponse().getStatus() >=400 )
  9. errorCount++;
  10. long t0=req.getStartTime();
  11. long t1=System.currentTimeMillis();
  12. long time=t1-t0;
  13. this.lastRequestProcessingTime = time;
  14. processingTime+=time;
  15. if( maxTime < time ) {
  16. maxTime=time;
  17. maxRequestUri=req.requestURI().toString();
  18. }
  19. }

相关文章

Request类方法