Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone clarify how we can use in general, or a in real world example, this snippet?

<f:metadata>
    <f:viewParam id="myId" value="#{myValue}"/>
</f:metadata>
share|improve this question

1 Answer

up vote 78 down vote accepted

Process GET parameters

The <f:viewParam> manages the setting, conversion and validation of GET parameters. It's like the <h:inputText>, but then for GET parameters.

The following example

<f:metadata>
    <f:viewParam name="id" value="#{bean.id}" />
</f:metadata>

does basically the following:

  • Get the request parameter value by name id.
  • Convert and validate it if necessary (you can use required, validator and converter attributes and nest a <f:converter> and <f:validator> in it like as with <h:inputText>)
  • If conversion and validation succeeds, then set it as a bean property represented by #{bean.id} value, or if the value attribute is absent, then set it as request attribtue on name id so that it's available by #{id} in the view.

So when you open the page as foo.xhtml?id=10 then the parameter value 10 get set in the bean this way, right before the view is rendered.

As to validation, the following example sets the param to required="true" and allows only values between 10 and 20. Any validation failure will result in a message being displayed.

<f:metadata>
    <f:viewParam id="id" name="id" value="#{bean.id}" required="true">
        <f:validateLongRange minimum="10" maximum="20" />
    </f:viewParam>
</f:metadata>
<h:message for="id" />

Performing business action on GET parameters

You can postprocess the view parameters by a listener method as specified in <f:event>.

<f:metadata>
    <f:viewParam id="id" name="id" value="#{bean.id}" required="true">
        <f:validateLongRange minimum="10" maximum="20" />
    </f:viewParam>
    <f:event type="preRenderView" listener="#{bean.init}" />
</f:metadata>
<h:message for="id" />

with

public void init() {
    // ...
}

This is however invoked on every request. When you need to use a @PostConstruct like feature for view scoped beans which isn't invoked on every request, check if the request isn't a postback:

public void init() {
    if (!FacesContext.getCurrentInstance().isPostback()) {
        // ...
    }
}

When you would like to skip "Conversion/Validation failed" cases as well, then do as follows:

public void init() {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    if (!facesContext.isPostback() && !facesContext.isValidationFailed()) {
        // ...
    }
}

Using <f:event> this way is however in essence a workaround/hack. For the upcoming JSF 2.2, a new <f:viewAction> tag will be introduced which should then be used instead of <f:event>:

<f:viewAction action="#{bean.init}" onPostback="false" />

Pass view parameters to next view

You can "pass-through" the view parameters in navigation links by includeViewParams=true.

<h:link outcome="next?includeViewParams=true">

which generates basically the following link

<a href="next.xhtml?id=10">

with the original parameter value.

This approach only requires that next.xhtml has also a <f:viewParam> on the very same parameter, otherwise it won't be passed through.


Use GET forms in JSF

The <f:viewParam> can also be used in combination with "plain HTML" GET forms.

<f:metadata>
    <f:viewParam id="query" name="query" value="#{bean.query}" />
    <f:event type="preRenderView" listener="#{bean.search}" />
</f:metadata>
...
<form>
    <label for="query">Query</label>
    <input type="text" name="query" value="#{empty bean.query ? param.query : bean.query}" />
    <input type="submit" value="Search" />
    <h:message for="query" />
</form>
...
<h:dataTable value="#{bean.results}" var="result" rendered="#{not empty bean.results}">
     ...
</h:dataTable>

With basically this @RequestScoped bean:

private String query;
private List<Result> results;

public void search() {
    results = service.search(query);
}

Note that the <h:message> is for the <f:viewParam>, not the plain HTML <input type="text">! Also note that the input value displays #{param.query} when #{bean.query} is empty, because the submitted value would otherwise not show up at all when there's a validation or conversion error. Please note that this construct is invalid for JSF input components (it is doing that "under the covers" already).


See also:

share|improve this answer
thanks again BalusC for the clear answer. – Hanynowsky Jun 17 '11 at 7:38
You're welcome. – BalusC Jun 17 '11 at 11:47
@BalusC What should be the scope of "bean" be when used in conjunction with faces-redirect=true ? Will it work as expected if the scope is set to "@RequestScoped" ? – Geek Nov 6 '12 at 10:42
@Geek: A redirect creates a new GET request. The bean scope of the source and target bean is irrelevant. You should however take the possible implications of a new GET request into account for a request and view scoped bean. See also stackoverflow.com/questions/7031885/… – BalusC Nov 6 '12 at 10:43
@BalusC What exactly you mean by "You should however take the possible implications of a new GET request into account for a request and view scoped bean." – Geek Nov 6 '12 at 10:57
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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