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

x33g5p2x  于2022-01-18 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(150)

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

Context.getDistributable介绍

[英]Return the distributable flag for this web application.
[中]返回此web应用程序的可分发标志。

代码示例

代码示例来源:origin: modcluster/mod_cluster

@Override
public boolean isDistributable() {
  return this.context.getDistributable();
}

代码示例来源:origin: psi-probe/psi-probe

app.setDistributable(context.getDistributable());
app.setSessionTimeout(context.getSessionTimeout());
app.setServletVersion(context.getServletContext().getMajorVersion() + "."

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

@Override
protected void initInternal() throws LifecycleException {
  super.initInternal();
  setDistributable(getContext().getDistributable());
}

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

@Override
protected void initInternal() throws LifecycleException {
  
  super.initInternal();
  
  setDistributable(((Context) getContainer()).getDistributable());
}

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

@Override
protected void initInternal() throws LifecycleException {
  
  super.initInternal();
  
  setDistributable(((Context) getContainer()).getDistributable());
}

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

@Override
protected void initInternal() throws LifecycleException {
  
  super.initInternal();
  
  setDistributable(((Context) getContainer()).getDistributable());
}

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

@Override
protected void initInternal() throws LifecycleException {
  
  super.initInternal();
  
  setDistributable(((Context) getContainer()).getDistributable());
}

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

@Override
protected void initInternal() throws LifecycleException {
  
  super.initInternal();
  
  setDistributable(((Context) getContainer()).getDistributable());
}

代码示例来源:origin: modcluster/mod_cluster

@Test
  public void isDistributable() {
    when(this.context.getDistributable()).thenReturn(true);

    boolean result = this.catalinaContext.isDistributable();

    assertTrue(result);
  }
}

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

request.getContext().getDistributable() &&
!request.isAsyncDispatching()) {

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

request.getContext().getDistributable() &&
!request.isAsyncDispatching()) {

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

request.getContext().getDistributable() &&
!request.isAsyncDispatching()) {

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

sm.getString("standardSession.setAttribute.ise", getIdInternal()));
if ((manager != null) && manager.getContext().getDistributable() &&
    !isAttributeDistributable(name, value) && !exclude(name, value)) {
  throw new IllegalArgumentException(

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

sm.getString("standardSession.setAttribute.ise", getIdInternal()));
if ((manager != null) && manager.getContext().getDistributable() &&
    !isAttributeDistributable(name, value) && !exclude(name, value)) {
  throw new IllegalArgumentException(

相关文章

Context类方法