org.apache.catalina.connector.Request.setContext()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(5.5k)|赞(0)|评价(0)|浏览(180)

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

Request.setContext介绍

[英]Set the Context within which this Request is being processed. This must be called as soon as the appropriate Context is identified, because it identifies the value to be returned by getContextPath(), and thus enables parsing of the request URI.
[中]设置处理此请求的上下文。一旦确定了适当的上下文,就必须调用它,因为它确定了getContextPath()要返回的值,从而支持对请求URI的解析。

代码示例

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

/**
 * Set the Context within which this Request is being processed.  This
 * must be called as soon as the appropriate Context is identified, because
 * it identifies the value to be returned by <code>getContextPath()</code>,
 * and thus enables parsing of the request URI.
 *
 * @param context The newly associated Context
 */
public void setContext(Context context) {
  request.setContext(context);
}

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

/**
 * Set the Context within which this Request is being processed.  This
 * must be called as soon as the appropriate Context is identified, because
 * it identifies the value to be returned by <code>getContextPath()</code>,
 * and thus enables parsing of the request URI.
 *
 * @param context The newly associated Context
 */
public void setContext(Context context) {
  request.setContext(context);
}

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

/**
 * Set the Context within which this Request is being processed.  This
 * must be called as soon as the appropriate Context is identified, because
 * it identifies the value to be returned by <code>getContextPath()</code>,
 * and thus enables parsing of the request URI.
 *
 * @param context The newly associated Context
 */
public void setContext(Context context) {
  request.setContext(context);
}

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

/**
 * Set the Context within which this Request is being processed.  This
 * must be called as soon as the appropriate Context is identified, because
 * it identifies the value to be returned by <code>getContextPath()</code>,
 * and thus enables parsing of the request URI.
 *
 * @param context The newly associated Context
 */
public void setContext(Context context) {
  request.setContext(context);
}

代码示例来源:origin: org.osivia.portal.core/osivia-portal-jbossas-jbossweb-lib

/*      */   public void setContext(Context context)
/*      */   {
/*  177 */     this.request.setContext(context);
/*      */   }
/*      */

代码示例来源:origin: org.glassfish.main.security/websecurity

public void setContext(Context context) {
  httpRequest.setContext(context);
}

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

/**
 * Set the Context within which this Request is being processed.  This
 * must be called as soon as the appropriate Context is identified, because
 * it identifies the value to be returned by <code>getContextPath()</code>,
 * and thus enables parsing of the request URI.
 *
 * @param context The newly associated Context
 */
@Deprecated
public void setContext(Context context) {
  request.setContext(context);
}

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

/**
 * Set the Context within which this Request is being processed.  This
 * must be called as soon as the appropriate Context is identified, because
 * it identifies the value to be returned by <code>getContextPath()</code>,
 * and thus enables parsing of the request URI.
 *
 * @param context The newly associated Context
 */
@Deprecated
public void setContext(Context context) {
  request.setContext(context);
}

代码示例来源:origin: org.glassfish.web/web-glue

public void setContext(Context ctx) {
  if (ctx == null) {
    // Invalid request. Response will be handled by
    // the StandardEngineValve
    return;
  }
  
  super.setContext(ctx);
  Response response = (Response) getResponse();
  // Assert response!=null
  if (response != null) {
    String[] cacheControls = ((PwcWebModule) ctx).getCacheControls();
    for (int i=0; cacheControls!=null && i<cacheControls.length; i++) {
      response.addHeader("Cache-Control", cacheControls[i]);
    }
  }
  sunWebXmlChecked = false;
}

代码示例来源:origin: com.tomitribe.tribestream/tribestream-container

} finally { // local invocations needs it to ensure we don't get a NPE for current service(), used for logAccess()
  request.getMappingData().context = oldContext;
  request.setContext(oldContext);

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

request.setContext((Context) request.getMappingData().context);
request.setWrapper((Wrapper) request.getMappingData().wrapper);

代码示例来源:origin: org.glassfish.main.web/web-core

request.setContext(ctx);

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

request.setContext((Context) request.getMappingData().context);
request.setWrapper((Wrapper) request.getMappingData().wrapper);

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

request.setContext((Context) request.getMappingData().context);
request.setWrapper((Wrapper) request.getMappingData().wrapper);

代码示例来源:origin: org.osivia.portal.core/osivia-portal-jbossas-jbossweb-lib

/* 422 */     request.setContext((Context)request.getMappingData().context);

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

request.setContext(request.getMappingData().context);
request.setWrapper(request.getMappingData().wrapper);

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

request.setContext((Context) request.getMappingData().context);
request.setWrapper((Wrapper) request.getMappingData().wrapper);

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

request.setContext((Context) request.getMappingData().context);
request.setWrapper((Wrapper) request.getMappingData().wrapper);

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

request.setContext((Context) request.getMappingData().context);
request.setWrapper((Wrapper) request.getMappingData().wrapper);

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

request.setContext((Context) request.getMappingData().context);
request.setWrapper((Wrapper) request.getMappingData().wrapper);

相关文章

Request类方法