org.mortbay.jetty.Request.getServerPort()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.3k)|赞(0)|评价(0)|浏览(253)

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

Request.getServerPort介绍

暂无

代码示例

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

  1. /**
  2. * By default, we're integral, given we speak SSL. But, if we've been told about an integral
  3. * port, and said port is not our port, then we're not. This allows separation of listeners
  4. * providing INTEGRAL versus CONFIDENTIAL constraints, such as one SSL listener configured to
  5. * require client certs providing CONFIDENTIAL, whereas another SSL listener not requiring
  6. * client certs providing mere INTEGRAL constraints.
  7. */
  8. public boolean isIntegral(Request request)
  9. {
  10. final int integralPort = getIntegralPort();
  11. return integralPort == 0 || integralPort == request.getServerPort();
  12. }

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

  1. /**
  2. * By default, we're confidential, given we speak SSL. But, if we've been told about an
  3. * confidential port, and said port is not our port, then we're not. This allows separation of
  4. * listeners providing INTEGRAL versus CONFIDENTIAL constraints, such as one SSL listener
  5. * configured to require client certs providing CONFIDENTIAL, whereas another SSL listener not
  6. * requiring client certs providing mere INTEGRAL constraints.
  7. */
  8. public boolean isConfidential(Request request)
  9. {
  10. final int confidentialPort = getConfidentialPort();
  11. return confidentialPort == 0 || confidentialPort == request.getServerPort();
  12. }

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

  1. public StringBuffer getRequestURL()
  2. {
  3. StringBuffer url = new StringBuffer(48);
  4. synchronized (url)
  5. {
  6. String scheme = getScheme();
  7. int port = getServerPort();
  8. url.append(scheme);
  9. url.append("://");
  10. url.append(getServerName());
  11. if (_port>0 &&
  12. ((scheme.equalsIgnoreCase(URIUtil.HTTP) && port != 80) ||
  13. (scheme.equalsIgnoreCase(URIUtil.HTTPS) && port != 443)))
  14. {
  15. url.append(':');
  16. url.append(_port);
  17. }
  18. url.append(getRequestURI());
  19. return url;
  20. }
  21. }

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

  1. /**
  2. * Reconstructs the URL the client used to make the request. The returned URL contains a
  3. * protocol, server name, port number, and, but it does not include a path.
  4. * <p>
  5. * Because this method returns a <code>StringBuffer</code>, not a string, you can modify the
  6. * URL easily, for example, to append path and query parameters.
  7. *
  8. * This method is useful for creating redirect messages and for reporting errors.
  9. *
  10. * @return "scheme://host:port"
  11. */
  12. public StringBuffer getRootURL()
  13. {
  14. StringBuffer url = new StringBuffer(48);
  15. synchronized (url)
  16. {
  17. String scheme = getScheme();
  18. int port = getServerPort();
  19. url.append(scheme);
  20. url.append("://");
  21. url.append(getServerName());
  22. if (port > 0 && ((scheme.equalsIgnoreCase("http") && port != 80) || (scheme.equalsIgnoreCase("https") && port != 443)))
  23. {
  24. url.append(':');
  25. url.append(port);
  26. }
  27. return url;
  28. }
  29. }

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

  1. request.getScheme() +
  2. "://" + request.getServerName() +
  3. ":" + request.getServerPort() +
  4. URIUtil.addPaths(request.getContextPath(),uri));
  5. response.setContentLength(0);

代码示例来源:origin: org.mortbay.jetty/jetty-security

  1. request.getScheme() +
  2. "://" + request.getServerName() +
  3. ":" + request.getServerPort() +
  4. URIUtil.addPaths(request.getContextPath(),uri));
  5. response.setContentLength(0);

相关文章