2
I am using JSF 2 and need to get the name of the current page, how can I do?
2
I am using JSF 2 and need to get the name of the current page, how can I do?
3
One option is through ExternalContext
:
((HttpServletRequest) getFacesContext().getExternalContext().getRequest()).getRequestURI()
Browser other questions tagged java
You are not signed in. Login or sign up in order to post.