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.
|
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. |
||||
|
|
|
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
The
|
|||
|
|
|
You can get it as follows:
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. |
|||||||
|
|
You can avoid container-specific dependencies by using the
However, note that this code may not be entirely container-agnostic - some of those methods throw an 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 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. |
|||
|
|
|
HttpServletRespone.encodeURL("/") should give you what you require |
|||||||||||
|