How do I get request url in jsf managed bean without the requested servlet?

前端 未结 4 1590
予麋鹿
予麋鹿 2020-12-07 22:35

Assuming the URL is http://localhost:8080/project-name/resource.xhtml,

I want to obtain the following http://localhost:8080/project-name in a JSF managed bean.

4条回答
  •  感动是毒
    2020-12-07 23:27

    I'll assume that you are using JSF 2 and Java EE 6 for this answer.

    The implementation of the actual mechanism will vary depending on the extent to which you'll need the original URL.

    You'll first need to get access to the underlying servlet container (assumed to one, instead of a portlet container) produced HttpServletRequest object. Use the FacesContext object to access the HttpServletRequest object in the following manner:

    HttpServletRequest origRequest = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
    

    The HttpServletRequest class provides several utility methods to obtain a near representation of the original request:

    • getRequestURL(), which provides the original request sans the query string
    • getScheme, getServerName, getServerPort, getContextPath, getServletPath, getPathInfo and getQueryString all of whose outputs can be combined in sequence to obtain the original request. You may have to omit the latter invocations if you want a lesser fragment of the URL.

提交回复
热议问题