我在重定向后显示错误消息时遇到一些非常奇怪的问题。我使用RedirectAttributes将带有错误消息的BindingResult对象传递给视图,但此解决方案不起作用。
当我只返回一个带有重定向的视图名称时,一切正常。
有人可以提供建议,但没有会话使用吗?
@Controller
public class UserRegistrationController {
@Autowired
private UserService userService;
@RequestMapping(value="/registration", method=RequestMethod.GET)
public ModelAndView registrationPage() {
ModelAndView modelAndView = new ModelAndView("user-registration/registration-form");
modelAndView.addObject("user", new User());
return modelAndView;
}
@RequestMapping(value="/registration", method=RequestMethod.POST)
public ModelAndView registerUser(@ModelAttribute @Valid User user,
BindingResult result,
final RedirectAttributes redirectAttributes) {
ModelAndView modelAndView = new ModelAndView("redirect:registration.html");
User tempUser = userService.get(user.getEmail());
Map<String, String> messages = new HashMap<String, String>();
if (tempUser == null && ! result.hasErrors()) {
userService.save(user);
messages.put("success", "message.user.success.register");
} else {
messages.put("error", "message.user.invalid.register");
redirectAttributes.addFlashAttribute("user", user);
redirectAttributes.addFlashAttribute("errors", result);
}
redirectAttributes.addFlashAttribute("messages", messages);
return modelAndView;
}
}
视图代码:
<p>
<c:forEach var="message" items="${messages}">
<span class="${message.key}"><spring:message code="${message.value}" /></span><br />
</c:forEach>
</p>
<form:form method="POST" commandName="user" action="${pageContext.request.contextPath}/registration.html">
<table>
<tbody>
<tr>
<td><spring:message code="user.registration.email" /></td>
<td><form:input path="email" /></td>
<td><form:errors cssClass="error" path="email" /></td>
</tr>
<tr>
<td><spring:message code="user.registration.password" /></td>
<td><form:password path="password" /></td>
<td><form:errors cssClass="error" path="password" /></td>
</tr>
<tr>
<td><input type="submit" /></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</form:form>
答案 0 :(得分:1)
答案 1 :(得分:0)
在同一页面上仍存在错误且仅在成功重定向时,确实没有理由重定向。重定向的原因与确保浏览器在使用后退按钮时不会尝试重复相同的表单提交有关,但是当输入无效时,最简单的操作是保留在同一页面上。