當前位置: 首頁>>代碼示例>>Java>>正文


Java Host.removeContainerListener方法代碼示例

本文整理匯總了Java中org.apache.catalina.Host.removeContainerListener方法的典型用法代碼示例。如果您正苦於以下問題:Java Host.removeContainerListener方法的具體用法?Java Host.removeContainerListener怎麽用?Java Host.removeContainerListener使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.catalina.Host的用法示例。


在下文中一共展示了Host.removeContainerListener方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: removeHost

import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
 * Remove an existing child Host from our associated Engine.
 *
 * @param host Host to be removed
 */
private void removeHost(Host host) {

    if (debug >= 3)
        engine.log("Removing host '" + host.getName() + "'");

    host.removeContainerListener(this);

    // Identify all names mapped to this host
    ArrayList removes = new ArrayList();
    Iterator keys = cache.keySet().iterator();
    while (keys.hasNext()) {
        String key = (String) keys.next();
        if (host.equals((Host) cache.get(key)))
            removes.add(key);
    }

    // Remove the associated names
    keys = removes.iterator();
    while (keys.hasNext()) {
        removeAlias((String) keys.next());
    }

}
 
開發者ID:c-rainstorm,項目名稱:jerrydog,代碼行數:29,代碼來源:FastEngineMapper.java

示例2: destroyMBeans

import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
 * Deregister the MBeans for the specified Host and its nested components.
 *
 * @param host Host for which to destroy MBeans
 *
 * @exception Exception if an exception is thrown during MBean destruction
 */
protected void destroyMBeans(Host host) throws Exception {

    // Deregister ourselves as a ContainerListener
    host.removeContainerListener(this);

    // Deregister the MBeans for each child Context
    Container contexts[] = host.findChildren();
    for (int k = 0; k < contexts.length; k++) {
        destroyMBeans((Context) contexts[k]);
    }


    // Deregister the MBeans for the associated nested components
    Realm eRealm = host.getParent().getRealm();
    Realm hRealm = host.getRealm();
    if ((hRealm != null) && (hRealm != eRealm)) {
        if (log.isDebugEnabled())
            log.debug("Destroying MBean for Realm " + hRealm);
        //MBeanUtils.destroyMBean(hRealm);
    }

    // Deregister the MBean for the Host itself
    if (log.isDebugEnabled()) {
        log.debug("Destroying MBean for Host " + host);
    }
    //MBeanUtils.destroyMBean(host);

}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:36,代碼來源:ServerLifecycleListener.java

示例3: destroyMBeans

import org.apache.catalina.Host; //導入方法依賴的package包/類
/**
 * Deregister the MBeans for the specified Host and its nested components.
 *
 * @param host Host for which to destroy MBeans
 *
 * @exception Exception if an exception is thrown during MBean destruction
 */
protected void destroyMBeans(Host host) throws Exception {

    // Deregister ourselves as a ContainerListener
    host.removeContainerListener(this);

    // Deregister the MBeans for each child Context
    Container contexts[] = host.findChildren();
    for (int k = 0; k < contexts.length; k++) {
        destroyMBeans((Context) contexts[k]);
    }

    // Deregister the MBeans for the associated Valves
    if (host instanceof StandardHost) {
        Valve hValves[] = ((StandardHost)host).getValves();
        for (int k = 0; k < hValves.length; k++) {
            if (debug >= 3)
                log("Destroying MBean for Valve " + hValves[k]);
            MBeanUtils.destroyMBean(hValves[k], host);
        }
    }

    // Deregister the MBeans for the associated nested components
    Realm eRealm = host.getParent().getRealm();
    Realm hRealm = host.getRealm();
    if ((hRealm != null) && (hRealm != eRealm)) {
        if (debug >= 3)
            log("Destroying MBean for Realm " + hRealm);
        MBeanUtils.destroyMBean(hRealm);
    }
    Logger eLogger = host.getParent().getLogger();
    Logger hLogger = host.getLogger();
    if ((hLogger != null) && (hLogger != eLogger)) {
        if (debug >= 3)
            log("Destroying MBean for Logger " + hLogger);
        MBeanUtils.destroyMBean(hLogger);
    }

    // Deregister the MBean for the Host itself
    if (debug >= 3) {
        log("Destroying MBean for Host " + host);
    }
    MBeanUtils.destroyMBean(host);

}
 
開發者ID:c-rainstorm,項目名稱:jerrydog,代碼行數:52,代碼來源:ServerLifecycleListener.java


注:本文中的org.apache.catalina.Host.removeContainerListener方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。