- fixed confusion between login_user (the actual login process) and user_login (form for users to login)
this.clear();
// All fine
- return "user_login"; //NOI18N
+ return "login_user"; //NOI18N
} catch (final UserNotFoundException ex) {
// Show JSF message
this.showFacesMessage("form_user_login:userName", "ERROR_USER_NOT_FOUND"); //NOI18N
<navigation-rule>
<from-view-id>/guest/user/user_login.xhtml</from-view-id>
<navigation-case>
- <from-outcome>user_login</from-outcome>
+ <from-outcome>login_user</from-outcome>
<to-view-id>/user/login_index.xhtml</to-view-id>
<redirect>1</redirect>
</navigation-case>