1. 程式人生 > >獲取專案伺服器地址、專案名稱、以及路徑

獲取專案伺服器地址、專案名稱、以及路徑

獲取專案執行伺服器地址以及相關路徑
  1. HttpServletRequest httpRequest=(HttpServletRequest)request;  
  2. String strBackUrl = "http://" + request.getServerName() //伺服器地址  
  3.                     + ":"
  4.                     + request.getServerPort()           //埠號
  5.                     + httpRequest.getContextPath()      //專案名稱
  6.                     + httpRequest.getServletPath()      //請求頁面或其他地址
  7.                 + "?" + (httpRequest.getQueryString()); //引數