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


Java Connector.getHost方法代码示例

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


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

示例1: getConnectorAddress

import org.mortbay.jetty.Connector; //导入方法依赖的package包/类
/**
 * Get the address that corresponds to a particular connector.
 *
 * @return the corresponding address for the connector, or null if there's no
 *         such connector or the connector is not bounded.
 */
public InetSocketAddress getConnectorAddress(int index) {
  Preconditions.checkArgument(index >= 0);
  if (index > webServer.getConnectors().length)
    return null;

  Connector c = webServer.getConnectors()[index];
  if (c.getLocalPort() == -1) {
    // The connector is not bounded
    return null;
  }

  return new InetSocketAddress(c.getHost(), c.getLocalPort());
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:20,代码来源:HttpServer2.java

示例2: openListeners

import org.mortbay.jetty.Connector; //导入方法依赖的package包/类
/**
 * Open the main listener for the server
 * @throws Exception
 */
void openListeners() throws Exception {
  for (Connector listener : listeners) {
    if (listener.getLocalPort() != -1) {
      // This listener is either started externally or has been bound
      continue;
    }
    int port = listener.getPort();
    while (true) {
      // jetty has a bug where you can't reopen a listener that previously
      // failed to open w/o issuing a close first, even if the port is changed
      try {
        listener.close();
        listener.open();
        LOG.info("Jetty bound to port " + listener.getLocalPort());
        break;
      } catch (BindException ex) {
        if (port == 0 || !findPort) {
          BindException be = new BindException("Port in use: "
              + listener.getHost() + ":" + listener.getPort());
          be.initCause(ex);
          throw be;
        }
      }
      // try the next port number
      listener.setPort(++port);
      Thread.sleep(100);
    }
  }
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:34,代码来源:HttpServer2.java

示例3: openListeners

import org.mortbay.jetty.Connector; //导入方法依赖的package包/类
/**
 * Open the main listener for the server
 * @throws Exception
 */
void openListeners() throws Exception {
  for (ListenerInfo li : listeners) {
    Connector listener = li.listener;
    if (!li.isManaged || li.listener.getLocalPort() != -1) {
      // This listener is either started externally or has been bound
      continue;
    }
    int port = listener.getPort();
    while (true) {
      // jetty has a bug where you can't reopen a listener that previously
      // failed to open w/o issuing a close first, even if the port is changed
      try {
        listener.close();
        listener.open();
        LOG.info("Jetty bound to port " + listener.getLocalPort());
        break;
      } catch (BindException ex) {
        if (port == 0 || !findPort) {
          BindException be = new BindException("Port in use: "
              + listener.getHost() + ":" + listener.getPort());
          be.initCause(ex);
          throw be;
        }
      }
      // try the next port number
      listener.setPort(++port);
      Thread.sleep(100);
    }
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:35,代码来源:HttpServer.java

示例4: getJettyURL

import org.mortbay.jetty.Connector; //导入方法依赖的package包/类
protected String getJettyURL() {
  Connector c = jetty.getConnectors()[0];
  return "http://" + c.getHost() + ":" + c.getLocalPort();
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:5,代码来源:TestWebDelegationToken.java

示例5: getJettyURL

import org.mortbay.jetty.Connector; //导入方法依赖的package包/类
protected String getJettyURL() {
  Connector c = jetty.getConnectors()[0];
  return "http://" + c.getHost() + ":" + c.getPort();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:5,代码来源:TestWebDelegationToken.java


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