i am using PrettyFaces as url rewrite library as follows:

@URLMappings(mappings = {
        @URLMapping(id = "page1", pattern = "/page1", viewId = "/faces/pages/page1.xhtml"),
        @URLMapping(id = "page2", pattern = "/page2", viewId = "/faces/pages/page2.xhtml") })

i can get the viewId as follows:

String viewId = facesContext.getViewRoot().getViewId();

which will return something like: /faces/pages/page1.xhtml

i was wondering if there's a direct way to get the pattern or the id of the view to return something like page1 or i have to use substring on the above code for getting the viewId?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Yep :) Just call:

PrettyContext.getCurrentInstance().getCurrentMapping().getId();

or, .getPattern() or etc...

Cheers :)

link|improve this answer
is it possible to get the mapping id in the xhtml page ? – Msaleh Dec 6 '11 at 12:06
yes: #{prettyContext.currentInstance.currentMapping().id()} – Lincoln Dec 8 '11 at 0:34
feedback

Your Answer

 
or
required, but never shown

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