freemarker中的验证错误

时间:2011-07-27 10:50:58

标签: spring macros freemarker

我尝试用spring和freemarker编写密码验证器。 BindingResult看到错误,但它们没有显示 - spring.status.errorMessages?size返回0. Validator获取正确的密码,因为我检查过。 PasswordForm是一个带密码的java类。我把下面的片段。

输入表格:

<tr>
    <td><@m.formPassword path='passwordForm.passwordOld' label='user.passwordOld' classes='' attr=''/></td>
    <td><@m.fieldErr /></td>
</tr>

其中m:

 "macros.ftl" as m

来自macros.ftl的使用过的宏:

<#macro fieldErr>
<#if (spring.status.errorMessages?size > 0)>
<label> blaaad</label>
</#if>
<label> size=${spring.status.errorMessages?size}</label>
</#macro>

<#macro formPassword path label='' classes='' attr='' required=false>
<@spring.bind "${path}" />
<#assign error = '' />
<#if (spring.status.errorMessages?size > 0)>
<#assign error = 'err' /></#if>
<#if label??>
<br/>
<label class="inputLabel ${error} <#if required>required </#if>"><@spring.message code="${label}" /></label>
</#if>
<@spring.formPasswordInput path="${path}" attributes='class="inputText ${classes} ${error}" AUTOCOMPLETE="off" '  />
<#if (spring.status.errorMessages?size > 0)>
    <span class="err">${spring.status.errorMessage}</span>
</#if>
</#macro>

控制器:

@RequestMapping(method = RequestMethod.POST)
public String onSubmit( 
        @ModelAttribute("passwordForm") PasswordForm passwordForm,
        BindingResult result,
        ModelMap model,
        SessionStatus sessionStatus,
        HttpSession session) {


    passwordValidator.validate(passwordForm, result);


    if(result.hasErrors())
        return redirect(view);


    return  redirect(View.MAIN);
}

验证

@Override
public void validate(Object target, Errors errors) {

    PasswordForm passwordForm = (PasswordForm) target;
    String passwordOld = passwordForm.getPasswordOld();
    String passwordNew = passwordForm.getPasswordNew();
    String passwordNewRepeat = passwordForm.getPasswordNewRepeat();

    if (StringUtils.isBlank(passwordOld)) {
        errors.rejectValue("passwordOld", "password.blank");
    }


    if (!StringUtils.equals(passwordNew, passwordNewRepeat)) {
        errors.rejectValue("passwordNewRepeat", "password.notmatch");
        errors.rejectValue("passwordNew", "password.notmatch");
    }

}

任何人都可以提供帮助?控制台中没有出现错误。

1 个答案:

答案 0 :(得分:2)

您的代码:

if(result.hasErrors())
      return redirect(view);

看起来您使用新请求重定向。您不能重定向,您必须直接返回视图而不重定向。


查看my answer类似的问题。这表示何时使用重定向以及何时直接返回视图。