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

x33g5p2x  于2022-01-30 转载在 其他  
字(3.4k)|赞(0)|评价(0)|浏览(99)

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

Service.init介绍

[英]Invoke a pre-startup initialization. This is used to allow connectors to bind to restricted ports under Unix operating environments.
[中]调用启动前初始化。这用于允许连接器在Unix操作环境下绑定到受限端口。

代码示例

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

services[i].init();

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

services[i].init();

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

services[i].init();

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

services[i].init();

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

services[i].init();

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

/**
 * Invoke a pre-startup initialization. This is used to allow connectors
 * to bind to restricted ports under Unix operating environments.
 */
@Override
protected void initInternal() throws LifecycleException {
  
  super.initInternal();
  // Register global String cache
  // Note although the cache is global, if there are multiple Servers
  // present in the JVM (may happen when embedding) then the same cache
  // will be registered under multiple names
  onameStringCache = register(new StringCache(), "type=StringCache");
  // Register the MBeanFactory
  MBeanFactory factory = new MBeanFactory();
  factory.setContainer(this);
  onameMBeanFactory = register(factory, "type=MBeanFactory");
  
  // Register the naming resources
  onameNamingResoucres = register(globalNamingResources,
      "type=NamingResources");
  
  // Initialize our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].init();
  }
}

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

/**
 * Invoke a pre-startup initialization. This is used to allow connectors
 * to bind to restricted ports under Unix operating environments.
 */
@Override
protected void initInternal() throws LifecycleException {
  
  super.initInternal();
  // Register global String cache
  // Note although the cache is global, if there are multiple Servers
  // present in the JVM (may happen when embedding) then the same cache
  // will be registered under multiple names
  onameStringCache = register(new StringCache(), "type=StringCache");
  // Register the MBeanFactory
  MBeanFactory factory = new MBeanFactory();
  factory.setContainer(this);
  onameMBeanFactory = register(factory, "type=MBeanFactory");
  
  // Register the naming resources
  onameNamingResoucres = register(globalNamingResources,
      "type=NamingResources");
  
  // Initialize our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].init();
  }
}

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

/**
 * Invoke a pre-startup initialization. This is used to allow connectors
 * to bind to restricted ports under Unix operating environments.
 */
@Override
protected void initInternal() throws LifecycleException {
  
  super.initInternal();
  // Register global String cache
  // Note although the cache is global, if there are multiple Servers
  // present in the JVM (may happen when embedding) then the same cache
  // will be registered under multiple names
  onameStringCache = register(new StringCache(), "type=StringCache");
  // Register the MBeanFactory
  MBeanFactory factory = new MBeanFactory();
  factory.setContainer(this);
  onameMBeanFactory = register(factory, "type=MBeanFactory");
  
  // Register the naming resources
  onameNamingResoucres = register(globalNamingResources,
      "type=NamingResources");
  
  // Initialize our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].init();
  }
}

相关文章