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


Java Connector.start方法代碼示例

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


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

示例3: startInternal

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 * Start nested components ({@link Executor}s, {@link Connector}s and
 * {@link Container}s) and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#startInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that prevents this component from being used
 */
@Override
protected void startInternal() throws LifecycleException {

    if(log.isInfoEnabled())
        log.info(sm.getString("standardService.start.name", this.name));
    setState(LifecycleState.STARTING);

    // Start our defined Container first
    if (container != null) {
        synchronized (container) {
            container.start();
        }
    }

    synchronized (executors) {
        for (Executor executor: executors) {
            executor.start();
        }
    }

    // Start our defined Connectors second
    synchronized (connectorsLock) {
        for (Connector connector: connectors) {
            try {
                // If it has already failed, don't try and start it
                if (connector.getState() != LifecycleState.FAILED) {
                    connector.start();
                }
            } catch (Exception e) {
                log.error(sm.getString(
                        "standardService.connector.startFailed",
                        connector), e);
            }
        }
    }
}
 
開發者ID:liaokailin,項目名稱:tomcat7,代碼行數:45,代碼來源:StandardService.java

示例4: startInternal

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 *  啟動()service容器的三個組件 container(engine) executor(默認沒有) connector
 *  都比較重要
 * Start nested components ({@link Executor}s, {@link Connector}s and
 * {@link Container}s) and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#startInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that prevents this component from being used
 */
@Override
protected void startInternal() throws LifecycleException {

    if(log.isInfoEnabled())
        log.info(sm.getString("standardService.start.name", this.name));//Catalina
    setState(LifecycleState.STARTING);

    // engine
    // Start our defined Container first
    if (container != null) {
        synchronized (container) {
            container.start();
        }
    }

    synchronized (executors) {
        for (Executor executor: executors) {
            executor.start();
        }
    }

    // Start our defined Connectors second
    synchronized (connectorsLock) {
        for (Connector connector: connectors) {
            try {
                // If it has already failed, don't try and start it
                if (connector.getState() != LifecycleState.FAILED) {
                    connector.start();
                }
            } catch (Exception e) {
                log.error(sm.getString(
                        "standardService.connector.startFailed",
                        connector), e);
            }
        }
    }
}
 
開發者ID:sunmingshuai,項目名稱:apache-tomcat-7.0.73-with-comment,代碼行數:48,代碼來源:StandardService.java

示例5: startInternal

import org.apache.catalina.connector.Connector; //導入方法依賴的package包/類
/**
 * Start nested components ({@link Executor}s, {@link Connector}s and
 * {@link Container}s) and implement the requirements of
 * {@link org.apache.catalina.util.LifecycleBase#startInternal()}.
 *
 * @exception LifecycleException
 *                if this component detects a fatal error that prevents this
 *                component from being used
 */
@Override
protected void startInternal() throws LifecycleException {

	if (log.isInfoEnabled())
		log.info(sm.getString("standardService.start.name", this.name));
	setState(LifecycleState.STARTING);

	// Start our defined Container first
	if (container != null) {
		synchronized (container) {
			container.start();
		}
	}

	synchronized (executors) {
		for (Executor executor : executors) {
			executor.start();
		}
	}

	// Start our defined Connectors second
	synchronized (connectorsLock) {
		for (Connector connector : connectors) {
			try {
				// If it has already failed, don't try and start it
				if (connector.getState() != LifecycleState.FAILED) {
					connector.start();
				}
			} catch (Exception e) {
				log.error(sm.getString("standardService.connector.startFailed", connector), e);
			}
		}
	}
}
 
開發者ID:how2j,項目名稱:lazycat,代碼行數:44,代碼來源:StandardService.java


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