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

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

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

Context.getReloadable介绍

[英]Return the reloadable flag for this web application.
[中]返回此web应用程序的可重新加载标志。

代码示例

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

/**
 * Set the Container with which this Logger has been associated.
 *
 * @param container The associated Container
 */
public void setContainer(Container container) {
  // Deregister from the old Container (if any)
  if ((this.container != null) && (this.container instanceof Context))
    ((Context) this.container).removePropertyChangeListener(this);
  // Process this property change
  Container oldContainer = this.container;
  this.container = container;
  support.firePropertyChange("container", oldContainer, this.container);
  // Register with the new Container (if any)
  if ((this.container != null) && (this.container instanceof Context)) {
    setReloadable( ((Context) this.container).getReloadable() );
    ((Context) this.container).addPropertyChangeListener(this);
  }
}

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

/**
 * Set the Container with which this Logger has been associated.
 *
 * @param container The associated Container
 */
public void setContainer(Container container) {
  // Deregister from the old Container (if any)
  if ((this.container != null) && (this.container instanceof Context))
    ((Context) this.container).removePropertyChangeListener(this);
  // Process this property change
  Container oldContainer = this.container;
  this.container = container;
  support.firePropertyChange("container", oldContainer, this.container);
  // Register with the new Container (if any)
  if (this.container instanceof Context) {
    setReloadable( ((Context) this.container).getReloadable() );
    ((Context) this.container).addPropertyChangeListener(this);
  }
}

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

/**
 * Set the Container with which this Logger has been associated.
 *
 * @param container The associated Container
 */
@Override
public void setContainer(Container container) {
  // Deregister from the old Container (if any)
  if ((this.container != null) && (this.container instanceof Context))
    ((Context) this.container).removePropertyChangeListener(this);
  // Process this property change
  Container oldContainer = this.container;
  this.container = container;
  support.firePropertyChange("container", oldContainer, this.container);
  // Register with the new Container (if any)
  if ((this.container != null) && (this.container instanceof Context)) {
    setReloadable( ((Context) this.container).getReloadable() );
    ((Context) this.container).addPropertyChangeListener(this);
  }
}

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

/**
 * Set the Container with which this Logger has been associated.
 *
 * @param container The associated Container
 */
@Override
public void setContainer(Container container) {
  // Deregister from the old Container (if any)
  if ((this.container != null) && (this.container instanceof Context))
    ((Context) this.container).removePropertyChangeListener(this);
  // Process this property change
  Container oldContainer = this.container;
  this.container = container;
  support.firePropertyChange("container", oldContainer, this.container);
  // Register with the new Container (if any)
  if ((this.container != null) && (this.container instanceof Context)) {
    setReloadable( ((Context) this.container).getReloadable() );
    ((Context) this.container).addPropertyChangeListener(this);
  }
}

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

/**
 * Set the Container with which this Logger has been associated.
 *
 * @param container The associated Container
 */
@Override
public void setContainer(Container container) {
  // Deregister from the old Container (if any)
  if ((this.container != null) && (this.container instanceof Context))
    ((Context) this.container).removePropertyChangeListener(this);
  // Process this property change
  Container oldContainer = this.container;
  this.container = container;
  support.firePropertyChange("container", oldContainer, this.container);
  // Register with the new Container (if any)
  if ((this.container != null) && (this.container instanceof Context)) {
    setReloadable( ((Context) this.container).getReloadable() );
    ((Context) this.container).addPropertyChangeListener(this);
  }
}

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

/**
 * Set the Container with which this Logger has been associated.
 *
 * @param container The associated Container
 */
@Override
public void setContainer(Container container) {
  // Deregister from the old Container (if any)
  if ((this.container != null) && (this.container instanceof Context))
    ((Context) this.container).removePropertyChangeListener(this);
  // Process this property change
  Container oldContainer = this.container;
  this.container = container;
  support.firePropertyChange("container", oldContainer, this.container);
  // Register with the new Container (if any)
  if ((this.container != null) && (this.container instanceof Context)) {
    setReloadable( ((Context) this.container).getReloadable() );
    ((Context) this.container).addPropertyChangeListener(this);
  }
}

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

/**
 * Set the Container with which this Logger has been associated.
 *
 * @param container The associated Container
 */
@Override
public void setContainer(Container container) {
  // Deregister from the old Container (if any)
  if ((this.container != null) && (this.container instanceof Context))
    ((Context) this.container).removePropertyChangeListener(this);
  // Process this property change
  Container oldContainer = this.container;
  this.container = container;
  support.firePropertyChange("container", oldContainer, this.container);
  // Register with the new Container (if any)
  if ((this.container != null) && (this.container instanceof Context)) {
    setReloadable( ((Context) this.container).getReloadable() );
    ((Context) this.container).addPropertyChangeListener(this);
  }
}

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

@Override
public void setContext(Context context) {
  if (this.context == context) {
    return;
  }
  if (getState().isAvailable()) {
    throw new IllegalStateException(
        sm.getString("webappLoader.setContext.ise"));
  }
  // Deregister from the old Context (if any)
  if (this.context != null) {
    this.context.removePropertyChangeListener(this);
  }
  // Process this property change
  Context oldContext = this.context;
  this.context = context;
  support.firePropertyChange("context", oldContext, this.context);
  // Register with the new Container (if any)
  if (this.context != null) {
    setReloadable(this.context.getReloadable());
    this.context.addPropertyChangeListener(this);
  }
}

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

@Override
public void setContext(Context context) {
  if (this.context == context) {
    return;
  }
  if (getState().isAvailable()) {
    throw new IllegalStateException(
        sm.getString("webappLoader.setContext.ise"));
  }
  // Deregister from the old Context (if any)
  if (this.context != null) {
    this.context.removePropertyChangeListener(this);
  }
  // Process this property change
  Context oldContext = this.context;
  this.context = context;
  support.firePropertyChange("context", oldContext, this.context);
  // Register with the new Container (if any)
  if (this.context != null) {
    setReloadable(this.context.getReloadable());
    this.context.addPropertyChangeListener(this);
  }
}

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

@Override
public void setContext(Context context) {
  if (this.context == context) {
    return;
  }
  if (getState().isAvailable()) {
    throw new IllegalStateException(
        sm.getString("webappLoader.setContext.ise"));
  }
  // Deregister from the old Context (if any)
  if (this.context != null) {
    this.context.removePropertyChangeListener(this);
  }
  // Process this property change
  Context oldContext = this.context;
  this.context = context;
  support.firePropertyChange("context", oldContext, this.context);
  // Register with the new Container (if any)
  if (this.context != null) {
    setReloadable(this.context.getReloadable());
    this.context.addPropertyChangeListener(this);
  }
}

相关文章

微信公众号

最新文章

更多

Context类方法