當前位置: 首頁>>代碼示例>>Java>>正文


Java Connector.getLocalPort方法代碼示例

本文整理匯總了Java中org.mortbay.jetty.Connector.getLocalPort方法的典型用法代碼示例。如果您正苦於以下問題:Java Connector.getLocalPort方法的具體用法?Java Connector.getLocalPort怎麽用?Java Connector.getLocalPort使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.mortbay.jetty.Connector的用法示例。


在下文中一共展示了Connector.getLocalPort方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: putUpJettyServer

import org.mortbay.jetty.Connector; //導入方法依賴的package包/類
private int putUpJettyServer() throws IOException {
  if (!conf.getBoolean("hbase.master.infoserver.redirect", true)) {
    return -1;
  }
  int infoPort = conf.getInt("hbase.master.info.port.orig",
    HConstants.DEFAULT_MASTER_INFOPORT);
  // -1 is for disabling info server, so no redirecting
  if (infoPort < 0 || infoServer == null) {
    return -1;
  }
  String addr = conf.get("hbase.master.info.bindAddress", "0.0.0.0");
  if (!Addressing.isLocalAddress(InetAddress.getByName(addr))) {
    String msg =
        "Failed to start redirecting jetty server. Address " + addr
            + " does not belong to this host. Correct configuration parameter: "
            + "hbase.master.info.bindAddress";
    LOG.error(msg);
    throw new IOException(msg);
  }

  RedirectServlet.regionServerInfoPort = infoServer.getPort();
  if(RedirectServlet.regionServerInfoPort == infoPort) {
    return infoPort;
  }
  masterJettyServer = new org.mortbay.jetty.Server();
  Connector connector = new SelectChannelConnector();
  connector.setHost(addr);
  connector.setPort(infoPort);
  masterJettyServer.addConnector(connector);
  masterJettyServer.setStopAtShutdown(true);
  Context context = new Context(masterJettyServer, "/", Context.NO_SESSIONS);
  context.addServlet(RedirectServlet.class, "/*");
  try {
    masterJettyServer.start();
  } catch (Exception e) {
    throw new IOException("Failed to start redirecting jetty server", e);
  }
  return connector.getLocalPort();
}
 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:40,代碼來源:HMaster.java

示例4: putUpJettyServer

import org.mortbay.jetty.Connector; //導入方法依賴的package包/類
private int putUpJettyServer() throws IOException {
    if (!conf.getBoolean("hbase.master.infoserver.redirect", true)) {
        return -1;
    }
    int infoPort = conf.getInt("hbase.master.info.port.orig",
            HConstants.DEFAULT_MASTER_INFOPORT);
    // -1 is for disabling info server, so no redirecting
    if (infoPort < 0 || infoServer == null) {
        return -1;
    }
    String addr = conf.get("hbase.master.info.bindAddress", "0.0.0.0");
    if (!Addressing.isLocalAddress(InetAddress.getByName(addr))) {
        String msg =
                "Failed to start redirecting jetty server. Address " + addr
                        + " does not belong to this host. Correct configuration parameter: "
                        + "hbase.master.info.bindAddress";
        LOG.error(msg);
        throw new IOException(msg);
    }

    RedirectServlet.regionServerInfoPort = infoServer.getPort();
    masterJettyServer = new org.mortbay.jetty.Server();
    Connector connector = new SelectChannelConnector();
    connector.setHost(addr);
    connector.setPort(infoPort);
    masterJettyServer.addConnector(connector);
    masterJettyServer.setStopAtShutdown(true);
    Context context = new Context(masterJettyServer, "/", Context.NO_SESSIONS);
    context.addServlet(RedirectServlet.class, "/*");
    try {
        masterJettyServer.start();
    } catch (Exception e) {
        throw new IOException("Failed to start redirecting jetty server", e);
    }
    return connector.getLocalPort();
}
 
開發者ID:grokcoder,項目名稱:pbase,代碼行數:37,代碼來源:HMaster.java

示例5: getConnectorPort

import org.mortbay.jetty.Connector; //導入方法依賴的package包/類
private int getConnectorPort(Server webServer, int index) {
  Preconditions.checkArgument(index >= 0);
  if (index > webServer.getConnectors().length)
    throw new IllegalStateException("Illegal connect index requested");

  Connector c = webServer.getConnectors()[index];
  if (c.getLocalPort() == -1) {
    // The connector is not bounded
    throw new IllegalStateException("The connector is not bound to a port");
  }

  return c.getLocalPort();
}
 
開發者ID:apache,項目名稱:incubator-slider,代碼行數:14,代碼來源:AgentWebApp.java

示例6: startServer

import org.mortbay.jetty.Connector; //導入方法依賴的package包/類
private void startServer() throws Exception {
    Connector connector=new SocketConnector();
    connector.setPort(0);
    server.setConnectors(new Connector[]{connector});
    server.start();
    port = connector.getLocalPort();
}
 
開發者ID:betfair,項目名稱:tornjak,代碼行數:8,代碼來源:CheckCanConnectTest.java

示例7: 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


注:本文中的org.mortbay.jetty.Connector.getLocalPort方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。