Apache Struts 2 Documentation > Home > Guides > Core Developers Guide > Annotations > After Annotation
Added by Rainer Hermanns, last edited by Don Brown on Nov 14, 2006  (view change)

After Annotation

Marks a action method that needs to be called after the main action method and the result was executed. Return value is ignored.

Usage

The After annotation can be applied at method level.

Parameters

no parameters

Examples

public class SampleAction extends ActionSupport {

 @After
 public void isValid() throws ValidationException {
   // validate model object, throw exception if failed
 }

 public String execute() {
    // perform action
    return SUCCESS;
 }
}