Tomcat: getHeader(“Host”) vs. getServerName()

2022-09-04 08:35:53

我有一个Tomcat应用程序,它从多个域提供。以前的开发人员构建了一个返回应用程序 URL 的方法(见下文)。在该方法中,它们请求服务器名称 (),该名称适当地从 httpd.conf 文件中返回 ServerNamerequest.getServerName()

但是,我不想那样。我想要的是浏览器发送请求的主机名,即浏览器从哪个域访问应用程序。

我试过了,但这仍然返回在 httpd.conf 文件中设置的服务器名称getHeader("Host")

而不是 ,我应该使用什么来获取浏览器向其发送请求的服务器名称?request.getServerName()

例如:

  • httpd.conf 中的 ServerName: www.myserver.net
  • 用户在 www.yourserver.net 上访问Tomcat应用程序

我需要返回 www.yourserver.net 而不是 www.myserver.net。通话似乎只返回 www.myserver.netrequest.getServerName()

/**
 * Convenience method to get the application's URL based on request
 * variables.
 * 
 * @param request the current request
 * @return URL to application
 */
public static String getAppURL(HttpServletRequest request) {
    StringBuffer url = new StringBuffer();
    int port = request.getServerPort();
    if (port < 0) {
        port = 80; // Work around java.net.URL bug
    }
    String scheme = request.getScheme();
    url.append(scheme);
    url.append("://");
    url.append(request.getServerName());
    if (("http".equals(scheme) && (port != 80)) || ("https".equals(scheme) && (port != 443))) {
        url.append(':');
        url.append(port);
    }
    url.append(request.getContextPath());
    return url.toString();
}

提前致谢!


答案 1

您需要确保将客户端提供的标头传递给 Tomcat。最简单的方法(假设你正在使用 - 你没有说)是使用以下方法:httpdHostmod_proxy_http

ProxyPreserveHost On

答案 2

使用像我在这个演示JSP中所做的那样的东西怎么样?

<%
  String requestURL = request.getRequestURL().toString();
  String servletPath = request.getServletPath();
  String appURL = requestURL.substring(0, requestURL.indexOf(servletPath));
%>
appURL is <%=appURL%>

推荐