I'm passing 2 parameters through a h:link
like this:
<h:link outcome="index" value="index" >
<f:param name="a" value="#{bean.a}" />
<f:param name="b" value="#{bean.b}" />
</h:link>
In this case both params are shown in the url. How can I achieve that only param a
and not b
is shown in the url?
Thanks