Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

4 Answers

up vote 7 down vote accepted

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.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.
share|improve this answer
Thanks its really help me. – Lan Jun 3 '11 at 4:15

You can get it as follows:

HttpServletRequest req = (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest();
String url = req.getRequestURL().toString();
return url.substring(0, url.length() - req.getRequestURI().length()) + req.getContextPath() + "/";
// ...

Note that there are possibly better ways to achieve the requirement. Getting the raw Servlet API inside a JSF managed bean is a code smell alarm.

share|improve this answer
Thanks its smart answer. – Lan Jun 3 '11 at 4:16
@BalusC, that works fine but returns tow slashes before application name. – Mahmoud Saleh Oct 23 '12 at 13:59
@Mah: see updated answer. – BalusC Oct 23 '12 at 14:03

You can avoid container-specific dependencies by using the ExternalContext in something like this form:

public String getApplicationUri() {
  try {
    FacesContext ctxt = FacesContext.getCurrentInstance();
    ExternalContext ext = ctxt.getExternalContext();
    URI uri = new URI(ext.getRequestScheme(),
          null, ext.getRequestServerName(), ext.getRequestServerPort(),
          ext.getRequestContextPath(), null, null);
    return uri.toASCIIString();
  } catch (URISyntaxException e) {
    throw new FacesException(e);
  }
}

However, note that this code may not be entirely container-agnostic - some of those methods throw an UnsupportedOperationException in their default implementation. This code relies on JSF 2.0 methods.

You should also note that using a URI like this as a base is not the correct way to refer to a resource in your application in the general case; the ViewHandler and ExternalContext should be used in concert to create resource URLs for referring to application resources to fetch resources or action URLs for invoking the JSF lifecycle, for example.

Unfortunately, I don't think there is a general, container-agnostic way to do everything you might want to do in a JSF app, so sometimes you're dependent on the implementation and you have little choice but to cast down to other APIs.

share|improve this answer
Thanks its great. – Lan Jun 3 '11 at 4:18

HttpServletRespone.encodeURL("/") should give you what you require

share|improve this answer
What sort of a class is HttpServletRequestURL? It certainly is not available in the context of a JSF managed bean. – Vineet Reynolds Jun 1 '11 at 5:28
JSF is not an independent technology, it depends on Servlet and JSP technology. Please try to learn about JSF tutorials available. The javax.faces.context.FacesContext can be injected to an JSF Managed Bean, which gives access to HttpSerlvetRequest. THe HttpServletRequest can be accessed like this FacesContext.getExternalContext.gerRequest, which can be type casted to HttpServletRequest. – Ramesh PVK Jun 1 '11 at 5:47
@Ramesh PVK, you might want to point out something wrong with my reply instead. I've pointed out that HttpServletRequestURL is a class that does not exist in any other specifications - either the Servlet and JSP specifications that you've conveniently brought up, or in the JSF specification itself. – Vineet Reynolds Jun 1 '11 at 5:49
If you wanted to access HttpServletRequest, then your code must indicate that. Instead you are linking to the unknown HttpServletRequestURL class. – Vineet Reynolds Jun 1 '11 at 5:51
Extremely sorry, i mean HttpServletRequest. – Ramesh PVK Jun 1 '11 at 5:53
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.