public class MyAction extends ActionSupport {
...
public String execute() throws Exception {
ActionContext context = ActionContext.getContext();
ActionInvocation invocation = context.getActionInvocation();
invocation.addPreResultListener(
new PreResultListener() {
public void beforeResult(ActionInvocation invocation, String resultCode) {
}
});
}
...
}