Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. WebWork will take notice since the URI ends in .action (defined in our web.xml files)
  2. WebWork will look up the action formTest in its action hierarchy and call any Interceptors that we might have been defined.
  3. WebWork will translate formTest and decide we would like to call the method processForm in the class com.opensymphony.webwork.example.FormAction as defined in our xwork.xml file.
  4. Our The method will process successfully and give WebWork the SUCCESS return parameter.
  5. WebWork will translate the SUCCESS return parameter into the location formSuccess.jsp (as defined in xwork.xml) and redirect us accordingly.

Most of the content here provided by Matt Dowell <matt.dowell@notiva.com>