当前位置: 首页>>代码示例>>Java>>正文


Java Service.getExecutor方法代码示例

本文整理汇总了Java中org.apache.catalina.Service.getExecutor方法的典型用法代码示例。如果您正苦于以下问题:Java Service.getExecutor方法的具体用法?Java Service.getExecutor怎么用?Java Service.getExecutor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.catalina.Service的用法示例。


在下文中一共展示了Service.getExecutor方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: begin

import org.apache.catalina.Service; //导入方法依赖的package包/类
/**
 * Process the beginning of this element.
 *
 * @param namespace the namespace URI of the matching element, or an 
 *   empty string if the parser is not namespace aware or the element has
 *   no namespace
 * @param name the local name if the parser is namespace aware, or just 
 *   the element name otherwise
 * @param attributes The attribute list for this element
 */
@Override
public void begin(String namespace, String name, Attributes attributes)
        throws Exception {
    Service svc = (Service)digester.peek();
    Executor ex = null;
    if ( attributes.getValue("executor")!=null ) {
        ex = svc.getExecutor(attributes.getValue("executor"));
    }
    Connector con = new Connector(attributes.getValue("protocol"));
    if ( ex != null )  _setExecutor(con,ex);
    
    digester.push(con);
}
 
开发者ID:liaokailin,项目名称:tomcat7,代码行数:24,代码来源:ConnectorCreateRule.java

示例2: begin

import org.apache.catalina.Service; //导入方法依赖的package包/类
/**
 * Process the beginning of this element.
 *
 * @param attributes The attribute list of this element
 */
public void begin(Attributes attributes) throws Exception {
    Service svc = (Service)digester.peek();
    Executor ex = null;
    if ( attributes.getValue("executor")!=null ) {
        ex = svc.getExecutor(attributes.getValue("executor"));
    }
    Connector con = new Connector(attributes.getValue("protocol"));
    if ( ex != null )  setExecutor(con,ex);
    
    digester.push(con);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:17,代码来源:ConnectorCreateRule.java

示例3: begin

import org.apache.catalina.Service; //导入方法依赖的package包/类
/**
 * Process the beginning of this element.
 *
 * @param namespace the namespace URI of the matching element, or an 
 *   empty string if the parser is not namespace aware or the element has
 *   no namespace
 * @param name the local name if the parser is namespace aware, or just 
 *   the element name otherwise
 * @param attributes The attribute list for this element
 */
@Override
public void begin(String namespace, String name, Attributes attributes)
        throws Exception {
    Service svc = (Service)digester.peek();
    Executor ex = null;
    if ( attributes.getValue("executor")!=null ) {
        ex = svc.getExecutor(attributes.getValue("executor"));
    }
    //protocol 1. http 2. ajp
    Connector con = new Connector(attributes.getValue("protocol"));
    if ( ex != null )  _setExecutor(con,ex);
    
    digester.push(con);
}
 
开发者ID:sunmingshuai,项目名称:apache-tomcat-7.0.73-with-comment,代码行数:25,代码来源:ConnectorCreateRule.java

示例4: begin

import org.apache.catalina.Service; //导入方法依赖的package包/类
/**
 * Process the beginning of this element.
 *
 * @param namespace
 *            the namespace URI of the matching element, or an empty string
 *            if the parser is not namespace aware or the element has no
 *            namespace
 * @param name
 *            the local name if the parser is namespace aware, or just the
 *            element name otherwise
 * @param attributes
 *            The attribute list for this element
 */
@Override
public void begin(String namespace, String name, Attributes attributes) throws Exception {
	Service svc = (Service) digester.peek();
	Executor ex = null;
	if (attributes.getValue("executor") != null) {
		ex = svc.getExecutor(attributes.getValue("executor"));
	}
	Connector con = new Connector(attributes.getValue("protocol"));
	if (ex != null)
		_setExecutor(con, ex);

	digester.push(con);
}
 
开发者ID:how2j,项目名称:lazycat,代码行数:27,代码来源:ConnectorCreateRule.java


注:本文中的org.apache.catalina.Service.getExecutor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。