Apache Struts 2 Documentation > Home > FAQs > Why didn't my action tag get executed when I have validation errors
Added by tm_jee, last edited by Ted Husted on Oct 16, 2006  (view change)

The class related to an action tag will not execute when a validation error is exposed and the (default) ValidationInterceptor and DefaultWorkflowInterceptor are in place.

The default configuration excludes several methods from valiation, including input. If the input method is specified by the action tag, then valiation will not fire.

<s:action name="myActionAlias!input" executeResult="false" />