public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws Exception {
// If user pressed 'Cancel' button,
// return to home page
if (isCancelled(request)) {
return mapping.findForward("home");
}
ActionErrors errors = new ActionErrors();
// Prevent unintentional duplication submissions by checking
// that we have not received this token previously
if (!isTokenValid(request)) {
errors.add(
ActionMessages.GLOBAL_MESSAGE,
new ActionMessage("errors.token"));
}
resetToken(request);
// Report any errors we have discovered back to the original form
if (!errors.isEmpty()) {
saveErrors(request, errors);
saveToken(request);
//这里返回到输入页面,完全避免重复提交最好跳转到其他警告页面
return (mapping.getInputForward());
}
// Forward to result page
return mapping.findForward("success");
}
|