org.apache.cxf.endpoint.Server.destroy()方法的使用及代码示例

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

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

Server.destroy介绍

暂无

代码示例

代码示例来源:origin: apache/incubator-dubbo

@Override
  public void run() {
    if(serverFactoryBean.getServer()!= null) {
      serverFactoryBean.getServer().destroy();
    }
    if(serverFactoryBean.getBus()!=null) {
      serverFactoryBean.getBus().shutdown(true);
    }
  }
};

代码示例来源:origin: apache/incubator-dubbo

@Override
  public void run() {
    if(serverFactoryBean.getServer()!= null) {
      serverFactoryBean.getServer().destroy();
    }
    if(serverFactoryBean.getBus()!=null) {
      serverFactoryBean.getBus().shutdown(true);
    }
  }
};

代码示例来源:origin: kiegroup/jbpm

@AfterClass
public static void destroy() throws Exception {
  if (server != null) {
    server.stop();
    server.destroy();
  }
  
  System.clearProperty("org.jbpm.event.emitters.elasticsearch.url");
}

代码示例来源:origin: kiegroup/jbpm

@AfterClass
public static void destroy() throws Exception {
  if (server != null) {
    server.stop();
    server.destroy();
  }
  System.clearProperty("org.jbpm.event.emitters.elasticsearch.url");
}

代码示例来源:origin: org.apache.cxf/cxf-rt-frontend-jaxws

@Override
public void stop() {
  if (null != server) {
    server.destroy();
    server = null;
  }
}

代码示例来源:origin: org.apache.cxf/cxf-rt-frontend-jaxws

public void destroy() {
    if (server != null) {
      server.destroy();
      server = null;
    }
  }
}

代码示例来源:origin: org.apache.cxf/cxf-rt-frontend-jaxws

public void destroy() {
  if (server != null) {
    server.destroy();
    server = null;
  }
}
public void setApplicationContext(ApplicationContext ctx) throws BeansException {

代码示例来源:origin: apache/tika

@After
public void tearDown() throws Exception {
  server.stop();
  server.destroy();
}

代码示例来源:origin: apache/cxf

/**
 * Shuts down the endpoint
 *
 * @throws Exception
 */
public void shutdown() throws Exception {
  invoker = null;
  if (server != null) {
    server.destroy();
    server = null;
  }
}

代码示例来源:origin: apache/cxf

public void tearDown() throws Exception {
  server.stop();
  server.destroy();
  server = null;
}

代码示例来源:origin: apache/cxf

public void tearDown() throws Exception {
  server.stop();
  server.destroy();
  server = null;
}

代码示例来源:origin: apache/cxf

@Override
public void tearDown() {
  server.stop();
  server.destroy();
  server = null;
}
public static void main(String[] args) {

代码示例来源:origin: apache/cxf

public void tearDown() throws Exception {
  server.stop();
  server.destroy();
  server = null;
}
public static void main(String[] args) {

代码示例来源:origin: apache/cxf

public void tearDown() throws Exception {
  server.stop();
  server.destroy();
  server = null;
}

代码示例来源:origin: apache/cxf

public void tearDown() throws Exception {
  server.stop();
  server.destroy();
  server = null;
}

代码示例来源:origin: apache/cxf

@Override
public void tearDown() throws Exception {
  server.stop();
  server.destroy();
  server = null;
}

代码示例来源:origin: apache/cxf

@Override
public void tearDown() {
  server.stop();
  server.destroy();
  server = null;
}
public static void main(String[] args) {

代码示例来源:origin: apache/cxf

public void tearDown() throws Exception {
  server.stop();
  server.destroy();
  server = null;
}

代码示例来源:origin: apache/cxf

public void tearDown() throws Exception {
  for (org.apache.cxf.endpoint.Server s : servers) {
    s.stop();
    s.destroy();
  }
  servers.clear();
  for (Endpoint ep : endpoints) {
    ep.stop();
  }
  endpoints.clear();
}

代码示例来源:origin: apache/cxf

@AfterClass
public static void tearDownExtServer() throws Exception {
  if (extserver != null) {
    extserver.stop();
    extserver.destroy();
  }
}

相关文章