SOLVED: The issue was caused by the libraries added by the Visual Web plugin for NetBeans.
I was trying to test passing GET parameters through a backing bean to the same page with the following code:
<f:metadata>
<f:viewParam name="link" value="#{testBean.link}"/>
</f:metadata>
<h:body>
<h:link value="Link 3" outcome="test" includeViewParams="true">
<f:param name="link" value="3"/>
</h:link>
<h:outputText value="Parameter is #{testBean.link}"/>
<h:outputText value="Param list: #{param}"/>
</h:body>
The first problem is that the rendered link tag does not have the expected url
test.xhtml?link=3, buttest.xhtml.The second one is i've noticed that even if i enter the desired URL myself in the browser, the
#{param}expression will evaluate to the expected list of parameters buttestBean.setLinkwon't get called.
This is the code for the backing bean:
@ManagedBean
@RequestScoped
public class TestBean implements Serializable {
private String link = "";
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
System.out.println("LINK: " + link);
}
}
Now... I found a way of fixing this by adding @ManagedProperty (value="#{param.link}") to the the bean's field (and removing the <f:metadata> section from the jsf page) but from what i've read in other related posts the <f:viewParam> way should work just as well.
If you have any ideas on why these things happen i would be more than grateful... i've spent enough time on such a little annoying issue like this one :)