| Author |
Errata : ActionForward
|
Sandeep Vaid
Ranch Hand
Joined: Feb 27, 2006
Posts: 390
|
|
In Complete Reference P85-86 : <action-mappings> <action path="/updateUser" type="com.jamesholmes.example.UpdateUserAction"> <forward name="success" path="/updateSuccess.jsp"/> </action> </action-mappings> public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { // Perform action processing. return new ActionForward("updateSuccess"); } Doesn't return new ActionForward("updateSuccess"); should be return new ActionForward("success"); ??
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
|
If the execute method you've shown us is from the UpdateUserAction class, then it appears you are right. The forward name should be success and not updateSucces.
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: Errata : ActionForward
|
|
|