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

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

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

Service.stop介绍

暂无

代码示例

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

return;
try {
  services[j].stop();
} catch (LifecycleException e) {

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

return;
try {
  services[j].stop();
} catch (LifecycleException e) {

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

return;
try {
  services[j].stop();
} catch (LifecycleException e) {

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

return;
try {
  services[j].stop();
} catch (LifecycleException e) {

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

return;
try {
  services[j].stop();
} catch (LifecycleException e) {

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

return;
try {
  services[j].stop();
} catch (LifecycleException e) {

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

return;
try {
  services[j].stop();
} catch (LifecycleException e) {

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

return;
try {
  services[j].stop();
} catch (LifecycleException e) {

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

/**
 * Stop nested components ({@link Service}s) and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  fireLifecycleEvent(CONFIGURE_STOP_EVENT, null);
  
  // Stop our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].stop();
  }
  stopAwait();
}

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

/**
 * Stop nested components ({@link Service}s) and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  fireLifecycleEvent(CONFIGURE_STOP_EVENT, null);
  
  // Stop our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].stop();
  }
  stopAwait();
}

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

/**
 * Stop nested components ({@link Service}s) and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if (monitorFuture != null) {
    monitorFuture.cancel(true);
    monitorFuture = null;
  }
  if (periodicLifecycleEventFuture != null) {
    periodicLifecycleEventFuture.cancel(false);
    periodicLifecycleEventFuture = null;
  }
  fireLifecycleEvent(CONFIGURE_STOP_EVENT, null);
  // Stop our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].stop();
  }
  globalNamingResources.stop();
  stopAwait();
}

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

/**
 * Stop nested components ({@link Service}s) and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  fireLifecycleEvent(CONFIGURE_STOP_EVENT, null);
  
  // Stop our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].stop();
  }
  stopAwait();
}

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

/**
 * Stop nested components ({@link Service}s) and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  fireLifecycleEvent(CONFIGURE_STOP_EVENT, null);
  
  // Stop our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].stop();
  }
  globalNamingResources.stop();
  
  stopAwait();
}

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

/**
 * Stop nested components ({@link Service}s) and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  fireLifecycleEvent(CONFIGURE_STOP_EVENT, null);
  // Stop our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].stop();
  }
  globalNamingResources.stop();
  stopAwait();
}

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

/**
 * Stop nested components ({@link Service}s) and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  fireLifecycleEvent(CONFIGURE_STOP_EVENT, null);
  // Stop our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].stop();
  }
  globalNamingResources.stop();
  stopAwait();
}

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

/**
 * Stop nested components ({@link Service}s) and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  fireLifecycleEvent(CONFIGURE_STOP_EVENT, null);
  
  // Stop our defined Services
  for (int i = 0; i < services.length; i++) {
    services[i].stop();
  }
  globalNamingResources.stop();
  
  stopAwait();
}

相关文章