@Retention(value=RUNTIME) @Target(value=METHOD) public @interface BeforeResult
Annotation usage:
The BeforeResult annotation can be applied at method level.Annotation parameters:
| Parameter | Required | Default | Notes | 
|---|---|---|---|
| priority | no | 10 | Priority order of method execution | 
Example code:
 
 public class SampleAction extends ActionSupport {
  @BeforeResult
  public void isValid() throws ValidationException {
    // validate model object, throw exception if failed
  }
  public String execute() {
     // perform action
     return SUCCESS;
  }
 }
 
 | Modifier and Type | Optional Element and Description | 
|---|---|
| int | priority | 
Copyright © 2000–2025 Apache Software Foundation. All rights reserved.