I am looking for a good explanation of JSF 2.0 implicit navigation and how it works with views. To be more precise, I understand that from the action method I can return a string that is the result of the action. If there is a JSF view whose file name matches the result, then this is implicit navigation.
Now ... my question is: what if the action is called from a view that is inside the folder, but the view that I want to go to the next is in a different folder? Ie, from /manager/edit.xhtml action is called. Which line should this action return so that the navigation system can safely jump to /user/list.xhtml or /index.xhtml or /manager/index.xhtml ?
source share