Spring custom error message
I want to set a custom error message via @Controller
,
there is something like Struts saveMessages(...)
in spring?
for example:
ActionErrors actionErrors开发者_C百科 = new ActionErrors();
actionErrors.add("error", new ActionMessage("error.missing.key",
messageResources.getMessage("label.username"),
messageResources.getMessage("label.password")));
saveErrors(request, actionErrors);
Yes, look at validation, Validators objects and so on: http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/validation.html#validator
精彩评论