1.

What is the purpose of BeforeResult annotation?

Answer»

The BeforeResult annotation marks a action method that needs to be executed before the result. Return value is ignored.

public class Employee extends ActionSupport{   BeforeResult   public void isValid() throws ValidationException {    // validate model object, throw exception if failed   }   public String execute() {      // perform action      return SUCCESS;   }}


Discussion

No Comment Found