如何从 http 或 https 请求获取带有端口的主机名
2022-09-01 01:47:53
我在JBoss容器(相同的unix盒子)中部署了两个应用程序。如果我收到来自 app1 的请求,我需要发送相应的 app2 请求。
例如:如果 app1 请求:,那么我需要提取 ,以便我可以发送第二个应用的请求。http://example.com/context?param1=123
http://example.com/
我尝试使用
HttpServletRequest.getServerName() &
HttpServletRequest.getServerPort() & \
HttpServletRequest.getHeader("host")
但是我怎么能在 或 之间定位 ?http
https