You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

The action tag will not get executed when there's a validation error with ValidationInterceptor and DefaultWorkflowInterceptor in place.

One way to make the action gets executed if to have the action's execution method specified in ValidationInterceptor's excludeMethods parameter as show in the following snippet.

<interceptor-ref name="validation">
  <param name="excludeMethods">input,back,cancel,browse</param>
</interceptor-ref>

and defined the method on the action to be executed as one of those excludedMethods, eg.

<saf:action name="myActionAlias!input" executeResult="false" />
  • No labels