Spring + Thymeleaf自定义验证显示

时间:2015-09-16 14:31:49

标签: java spring validation spring-mvc thymeleaf

我一直在努力让自定义javax验证工作(Spring Boot& Thymeleaf),但我无法弄清楚如何显示错误信息。问题似乎是,“正常”错误(例如@Size,@ NotNull等)似乎在绑定结果中添加了一个FieldError。我的自定义验证器提供了一个ObjectError。我无法弄清楚如何让Thymeleaf显示我的自定义错误(显然已经通过了,因为th:errors="*{*}"显示了它。)

非常感谢任何帮助。

更新: 我现在可以通过

显示错误消息
<p th:if="${#fields.hasErrors('${user}')}" th:errors="${user}"></p>

但是,如果我需要多个验证器(例如确认密码和确认电子邮件),此解决方案将无效(或者如果不适合,则显示错误消息。如果您有任何建议,请不要犹豫。

以下是我用于此的代码:

模板:

<p th:if="${#fields.hasErrors('username')}"th:errors="*{username}"></p>
<!-- works just fine -->
<p th:if="${#fields.hasErrors('*')}" th:errors="*{*}"></p>
<!-- works and displays all errors (for every field with an error,
 including my custom validator) -->
<p th:if="${#fields.hasErrors('confirmPassword')}" th:errors="*{*}"></p>
<!-- does not work -->
<p th:if="${#fields.hasErrors('*')}" th:errors="*{confirmPassword}"></p>
<!-- does not work -->

验证器实施:

public class PasswordsEqualConstraintValidator implements
        ConstraintValidator<PasswordsEqualConstraint, Object> {

    @Override
    public void initialize(PasswordsEqualConstraint arg0) {
    }

    @Override
    public boolean isValid(Object candidate, ConstraintValidatorContext arg1) {
        User user = (User) candidate;
        return user.getPassword().equals(user.getConfirmPassword());
    }
}

验证器界面:

@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Constraint(validatedBy = PasswordsEqualConstraintValidator.class)
public @interface PasswordsEqualConstraint {
    String message();

    Class<?>[] groups() default {};

    Class<? extends Payload>[] payload() default {};
}

User.java:

@PasswordsEqualConstraint(message = "passwords are not equal")
public class User implements java.io.Serializable {
...     
@Size(min=2, max=40)
private String username;
...
private String confirmPassword;
...

控制器:

@RequestMapping(value = "/signup", method = RequestMethod.POST)
public String signup(@Valid User user, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return "signup";
        }
        ... do db stuff .. return "success";
}

2 个答案:

答案 0 :(得分:3)

这可能是因为您的@PasswordsEqualConstraint被分配给整个bean(类型)而不是字段“confirmPassword”。要将可能的约束违规添加到具体字段,您可能会在下面的示例中执行此操作。

如果两个字段不相等,则FieldMatch会比较两个字段,然后将验证错误分配给第二个字段。

顺便说一句。对于您正在做的事情,这是更通用的解决方案。您可以使用的密码示例

@FieldMatch(first = "password", second = "confirmPassword", message = "Passowords are not equal.")

验证

public class FieldMatchValidator implements ConstraintValidator<FieldMatch, Object> {

  private String firstFieldName;
  private String secondFieldName;

  @Override
  public void initialize(final FieldMatch constraintAnnotation) {
    firstFieldName = constraintAnnotation.first();
    secondFieldName = constraintAnnotation.second();
  }

  @Override
  public boolean isValid(final Object value, final ConstraintValidatorContext context) {
    try {
      final Object firstObj = BeanUtils.getProperty(value, firstFieldName);
      final Object secondObj = BeanUtils.getProperty(value, secondFieldName);

      boolean isValid = firstObj == null && secondObj == null || firstObj != null && firstObj.equals(secondObj);

      if (!isValid) {
        context.disableDefaultConstraintViolation();
        context.buildConstraintViolationWithTemplate(context.getDefaultConstraintMessageTemplate()).addNode(secondFieldName).addConstraintViolation();
      }

      return isValid;
    }
    catch (final Exception ignore) {
      // ignore
    }
    return true;
  }
}

答案 1 :(得分:0)

我终于得到了批准的答案,但只是在获得第一个问题部分的详细信息之后。一开始并不清楚如何定义@FieldMatch接口。主要是那个

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = FieldMatchValidator.class)
FieldMatch界面中需要

这是spring文档。 http://dolszewski.com/spring/custom-validation-annotation-in-spring/

弹簧文档显示     @Target({ElementType.METHOD,ElementType.FIELD})

这让我搞砸了,因为当isValid被称为Object时,目标是Method和Field,它只是我放置@FieldMatch注释的1属性的值。但有     @target({ElementType.TYPE}) 然后,当调用Valid时,我得到了正在验证的整个bean,我可以强制转换它或使用反射来获取值。