| Author |
struts-config.xml:default for action tag input attribute
|
Timothy Toe
Ranch Hand
Joined: Oct 19, 2002
Posts: 156
|
|
The input attribute specifies which jsp page the ActionServlet will forward the control to when there are errors. What happens if I omit this attribute ? What is the default behaviour ? Thanks. [ March 17, 2004: Message edited by: Timothy Toh ]
|
 |
Srikanth Shenoy
author
Ranch Hand
Joined: Jan 24, 2004
Posts: 184
|
|
If no input is specified and there are validation errors, then an error is thrown. Here is the rekevant code from the RequestProcessor: String input = mapping.getInput(); if (input == null) { if (log.isTraceEnabled()) { log.trace(" Validation failed but no input form available"); } response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, getInternal().getMessage("noInput", mapping.getPath())); return (false); }
|
Srikanth Shenoy
Author of Struts Survival Guide : Basics to Best Practices
|
 |
 |
|
|
subject: struts-config.xml:default for action tag input attribute
|
|
|