ActionErrors errors = new ActionErrors();

//创建一个error,topic.show.error要在application.properties文件中声明
ActionError error1 = new ActionError("topic.show.error");

//加入到errors ,content为键
errors.add("content", error1);
//创建多个error
ActionError error2 = new ActionError("topic.show.error");
ActionError error3 = new ActionError("topic.show.error");
errors.add("error2", error2);
errors.add("error2", error3);
//Action返回值是Forward,所以要保存此errors
this.saveErrors(request, errors);

你可能感兴趣的:(html)