Versions Compared

Key

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

...

Result tags tell WebWork what to do next after the action has been called. The "name" attribute maps to the result code returned from the action execute() method. The "type" attribute indicates what result type class to use (see View Results Result+Types). The "param" elements allow you to pass parameters to
the view:

...

Code Block
<result name="missing-data" type="dispatcher">/form.jsp</result>

See webwork-default.xml or Result+Types for standard result types.

...