I have a component done in JSF 1.x, this component has a command button as follows

<h:commandButton ... action="#{templateController.next}" />

Where templateController was passed as an EL binding and can be any object that implements a certain interface. The generic implementation of next() was just executing code and then returning an empty string causing the same page to refresh:

public String next() {

  .....
 return ""; 
}

Now I am trying to port that component to JSF 2, my problem is that an empty string doesn't cause the same page to refresh anymore, instead, the framework tries to redirect to a page called ".jsf" i.e it just appends .jsf to whatever the outcome is. My question is how to return an outcome that causes the current page to refresh. My component is generic and I don't know before hand the name of the page it is going to be used on.

Thanks

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Return null instead or just declare method void.

link|improve this answer
Thanks, that worked. – shipmaster May 6 '10 at 16:47
Does one have to add special navigation rule for this case? – mnish Nov 29 '11 at 15:37
@mnish: no, definitely not. Even more, in JSF 2.0 navigation rules are superfluous. – BalusC Nov 29 '11 at 15:39
Thank you @BalusC – mnish Nov 29 '11 at 15:41
feedback

Your Answer

 
or
required, but never shown

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