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


Java Connector.setService方法代碼示例

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


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

示例1: addConnector

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 * Add a new Connector to the set of defined Connectors, and associate it
 * with this Service's Container.
 *
 * @param connector The Connector to be added
 */
@Override
public void addConnector(Connector connector) {

    synchronized (connectorsLock) {
        connector.setService(this);
        Connector results[] = new Connector[connectors.length + 1];
        System.arraycopy(connectors, 0, results, 0, connectors.length);
        results[connectors.length] = connector;
        connectors = results;

        if (getState().isAvailable()) {
            try {
                connector.start();
            } catch (LifecycleException e) {
                log.error(sm.getString(
                        "standardService.connector.startFailed",
                        connector), e);
            }
        }

        // Report this property change to interested listeners
        support.firePropertyChange("connector", null, connector);
    }

}
 
開發者ID:liaokailin,項目名稱:tomcat7,代碼行數:32,代碼來源:StandardService.java

示例2: destroyMBean

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 * Deregister the MBean for this
 * <code>Connector</code> object.
 *
 * @param connector The Connector to be managed
 *
 * @exception Exception if an MBean cannot be deregistered
 */
static void destroyMBean(Connector connector, Service service)
    throws Exception {

    connector.setService(service);
    String mname = createManagedName(connector);
    ManagedBean managed = registry.findManagedBean(mname);
    if (managed == null) {
        return;
    }
    String domain = managed.getDomain();
    if (domain == null)
        domain = mserver.getDefaultDomain();
    ObjectName oname = createObjectName(domain, connector);
    connector.setService(null);
    if( mserver.isRegistered( oname ))  {
        mserver.unregisterMBean(oname);
    }
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:27,代碼來源:MBeanUtils.java

示例3: addConnector

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 * Add a new Connector to the set of defined Connectors, and associate it
 * with this Service's Container.
 *
 * @param connector
 *            The Connector to be added
 */
@Override
public void addConnector(Connector connector) {

	synchronized (connectorsLock) {
		connector.setService(this);
		Connector results[] = new Connector[connectors.length + 1];
		System.arraycopy(connectors, 0, results, 0, connectors.length);
		results[connectors.length] = connector;
		connectors = results;

		if (getState().isAvailable()) {
			try {
				connector.start();
			} catch (LifecycleException e) {
				log.error(sm.getString("standardService.connector.startFailed", connector), e);
			}
		}

		// Report this property change to interested listeners
		support.firePropertyChange("connector", null, connector);
	}

}
 
開發者ID:how2j,項目名稱:lazycat,代碼行數:31,代碼來源:StandardService.java

示例4: removeConnector

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 * Remove the specified Connector from the set associated from this
 * Service.  The removed Connector will also be disassociated from our
 * Container.
 *
 * @param connector The Connector to be removed
 */
@Override
public void removeConnector(Connector connector) {

    synchronized (connectorsLock) {
        int j = -1;
        for (int i = 0; i < connectors.length; i++) {
            if (connector == connectors[i]) {
                j = i;
                break;
            }
        }
        if (j < 0)
            return;
        if (connectors[j].getState().isAvailable()) {
            try {
                connectors[j].stop();
            } catch (LifecycleException e) {
                log.error(sm.getString(
                        "standardService.connector.stopFailed",
                        connectors[j]), e);
            }
        }
        connector.setService(null);
        int k = 0;
        Connector results[] = new Connector[connectors.length - 1];
        for (int i = 0; i < connectors.length; i++) {
            if (i != j)
                results[k++] = connectors[i];
        }
        connectors = results;

        // Report this property change to interested listeners
        support.firePropertyChange("connector", connector, null);
    }

}
 
開發者ID:liaokailin,項目名稱:tomcat7,代碼行數:44,代碼來源:StandardService.java

示例5: removeConnector

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 * Remove the specified Connector from the set associated from this
 * Service.  The removed Connector will also be disassociated from our
 * Container.
 *
 * @param connector The Connector to be removed
 */
public void removeConnector(Connector connector) {

    synchronized (connectors) {
        int j = -1;
        for (int i = 0; i < connectors.length; i++) {
            if (connector == connectors[i]) {
                j = i;
                break;
            }
        }
        if (j < 0)
            return;
        if (started && (connectors[j] instanceof Lifecycle)) {
            try {
                ((Lifecycle) connectors[j]).stop();
            } catch (LifecycleException e) {
                log.error("Connector.stop", e);
            }
        }
        connectors[j].setContainer(null);
        connector.setService(null);
        int k = 0;
        Connector results[] = new Connector[connectors.length - 1];
        for (int i = 0; i < connectors.length; i++) {
            if (i != j)
                results[k++] = connectors[i];
        }
        connectors = results;

        // Report this property change to interested listeners
        support.firePropertyChange("connector", connector, null);
    }

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

示例6: removeConnector

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 * Remove the specified Connector from the set associated from this Service.
 * The removed Connector will also be disassociated from our Container.
 *
 * @param connector
 *            The Connector to be removed
 */
@Override
public void removeConnector(Connector connector) {

	synchronized (connectorsLock) {
		int j = -1;
		for (int i = 0; i < connectors.length; i++) {
			if (connector == connectors[i]) {
				j = i;
				break;
			}
		}
		if (j < 0)
			return;
		if (connectors[j].getState().isAvailable()) {
			try {
				connectors[j].stop();
			} catch (LifecycleException e) {
				log.error(sm.getString("standardService.connector.stopFailed", connectors[j]), e);
			}
		}
		connector.setService(null);
		int k = 0;
		Connector results[] = new Connector[connectors.length - 1];
		for (int i = 0; i < connectors.length; i++) {
			if (i != j)
				results[k++] = connectors[i];
		}
		connectors = results;

		// Report this property change to interested listeners
		support.firePropertyChange("connector", connector, null);
	}

}
 
開發者ID:how2j,項目名稱:lazycat,代碼行數:42,代碼來源:StandardService.java


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