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

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

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

Context.removeLifecycleListener介绍

暂无

代码示例

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

private void uninstall() {
  disabled = true;
  if (context != null) {
    context.removeLifecycleListener(this);
  }
  if (host != null) {
    host.removeLifecycleListener(this);
    host.removeContainerListener(this);
  }
  engine.removePropertyChangeListener(this);
}

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

protected void processContainerRemoveChild(Container parent,
  Container child) {
  if (log.isDebugEnabled())
    log.debug("Process removeChild[parent=" + parent + ",child=" +
      child + "]");
  if (child instanceof Context) {
    Context context = (Context) child;
    context.removeLifecycleListener(this);
  } else if (child instanceof Host || child instanceof Engine) {
    child.removeContainerListener(this);
  }
}

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

private void uninstall() {
  disabled = true;
  if (context != null) {
    context.removeLifecycleListener(this);
  }
  if (host != null) {
    host.removeLifecycleListener(this);
    host.removeContainerListener(this);
  }
  engine.removePropertyChangeListener(this);
}

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

protected void processContainerRemoveChild(Container parent,
  Container child) {
  if (log.isDebugEnabled())
    log.debug("Process removeChild[parent=" + parent + ",child=" +
      child + "]");
  if (child instanceof Context) {
    Context context = (Context) child;
    context.removeLifecycleListener(this);
  } else if (child instanceof Host || child instanceof Engine) {
    child.removeContainerListener(this);
  }
}

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

private void uninstall() {
  disabled = true;
  if (context != null) {
    context.removeLifecycleListener(this);
  }
  if (host != null) {
    host.removeLifecycleListener(this);
    host.removeContainerListener(this);
  }
  engine.removePropertyChangeListener(this);
}

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

protected void processContainerRemoveChild(Container parent,
  Container child) {
  if (log.isDebugEnabled())
    log.debug("Process removeChild[parent=" + parent + ",child=" +
      child + "]");
  if (child instanceof Context) {
    Context context = (Context) child;
    context.removeLifecycleListener(this);
  } else if (child instanceof Host || child instanceof Engine) {
    child.removeContainerListener(this);
  }
}

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

protected void processContainerRemoveChild(Container parent,
  Container child) {
  if (log.isDebugEnabled())
    log.debug("Process removeChild[parent=" + parent + ",child=" +
      child + "]");
  if (child instanceof Context) {
    Context context = (Context) child;
    context.removeLifecycleListener(this);
  } else if (child instanceof Host || child instanceof Engine) {
    child.removeContainerListener(this);
  }
}

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

private void uninstall() {
  disabled = true;
  if (context != null) {
    context.removeLifecycleListener(this);
  }
  if (host != null) {
    host.removeLifecycleListener(this);
    host.removeContainerListener(this);
  }
  engine.removePropertyChangeListener(this);
}

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

protected void processContainerRemoveChild(Container parent,
  Container child) {
  if (log.isDebugEnabled())
    log.debug("Process removeChild[parent=" + parent + ",child=" +
      child + "]");
  if (child instanceof Context) {
    Context context = (Context) child;
    context.removeLifecycleListener(this);
  } else if (child instanceof Host || child instanceof Engine) {
    child.removeContainerListener(this);
  }
}

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

private void uninstall() {
  disabled = true;
  if (context != null) {
    context.removeLifecycleListener(this);
  }
  if (host != null) {
    host.removeLifecycleListener(this);
    host.removeContainerListener(this);
  }
  engine.removePropertyChangeListener(this);
}

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

protected void processContainerRemoveChild(Container parent,
  Container child) {
  if (log.isDebugEnabled())
    log.debug("Process removeChild[parent=" + parent + ",child=" +
      child + "]");
  if (child instanceof Context) {
    Context context = (Context) child;
    context.removeLifecycleListener(this);
  } else if (child instanceof Host || child instanceof Engine) {
    child.removeContainerListener(this);
  }
}

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

private void uninstall() {
  disabled = true;
  if (context != null) {
    context.removeLifecycleListener(this);
  }
  if (host != null) {
    host.removeLifecycleListener(this);
    host.removeContainerListener(this);
  }
  engine.removePropertyChangeListener(this);
}

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

private void uninstall() {
  disabled = true;
  if (context != null) {
    context.removeLifecycleListener(this);
  }
  if (host != null) {
    host.removeLifecycleListener(this);
    host.removeContainerListener(this);
  }
  engine.removePropertyChangeListener(this);
}

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

private void uninstall() {
  disabled = true;
  if (context != null) {
    context.removeLifecycleListener(this);
  }
  if (host != null) {
    host.removeLifecycleListener(this);
    host.removeContainerListener(this);
  }
  engine.removePropertyChangeListener(this);
}

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

protected void processContainerRemoveChild(Container parent,
  Container child) {
  if (log.isDebugEnabled())
    log.debug("Process removeChild[parent=" + parent + ",child=" +
      child + "]");
  if (child instanceof Context) {
    Context context = (Context) child;
    context.removeLifecycleListener(this);
  } else if (child instanceof Host || child instanceof Engine) {
    child.removeContainerListener(this);
  }
}

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

protected void processContainerRemoveChild(Container parent,
  Container child) {
  if (log.isDebugEnabled())
    log.debug("Process removeChild[parent=" + parent + ",child=" +
      child + "]");
  if (child instanceof Context) {
    Context context = (Context) child;
    context.removeLifecycleListener(this);
  } else if (child instanceof Host || child instanceof Engine) {
    child.removeContainerListener(this);
  }
}

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

@Override
  public void lifecycleEvent(LifecycleEvent event) {
    if (Lifecycle.AFTER_STOP_EVENT.equals(event.getType())) {
      // The context has stopped.
      Context context = (Context) event.getLifecycle();
      // Remove the old expanded WAR.
      ExpandWar.delete(toDelete);
      // Reset the docBase to trigger re-expansion of the WAR.
      context.setDocBase(newDocBase);
      // Remove this listener from the Context else it will run every
      // time the Context is stopped.
      context.removeLifecycleListener(this);
    }
  }
}

代码示例来源:origin: com.brienwheeler.apps/apps-tomcat

context.removeLifecycleListener(listener);
break;

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

@Override
  public void lifecycleEvent(LifecycleEvent event) {
    if (Lifecycle.AFTER_STOP_EVENT.equals(event.getType())) {
      // The context has stopped.
      Context context = (Context) event.getLifecycle();
      // Remove the old expanded WAR.
      ExpandWar.delete(toDelete);
      // Reset the docBase to trigger re-expansion of the WAR.
      context.setDocBase(newDocBase);
      // Remove this listener from the Context else it will run every
      // time the Context is stopped.
      context.removeLifecycleListener(this);
    }
  }
}

相关文章

微信公众号

最新文章

更多

Context类方法