当我将 @validate 注释添加到控制器中的方法签名时,我得到一个带有描述的 HTTP 400,“客户端发送的请求在语法上不正确 ()。”。有谁知道为什么?
好代码
public ModelAndView startAccountSubmittal(
AccountCredential accountCred, HttpServletResponse response)
throws MessagingException {
错误代码
public ModelAndView startAccountSubmittal(
@Validated(value={AccountStates.Submitted.class})
AccountCredential accountCred,
HttpServletResponse response, BindingResult result)
throws MessagingException {
在此先感谢,乔