尽管正确实现,Hibernate验证器仍无法正常工作

时间:2018-01-31 23:07:22

标签: spring hibernate validation spring-mvc hibernate-validator

我正在使用hibernate验证器,我认为每件事情在逻辑上都很完美我使用了所有正确的注释和正确的库罐,但没有发生任何事情我不知道为什么它是hibernate版本或Spring版本我不喜欢#39;我知道我在使用Tomcat 8.5。

这是控制器

@RequestMapping("/showForm")
public String showForm(Model theModel) {

    theModel.addAttribute("customer", new Customer());

    return "customer-form";
}

@RequestMapping("/processForm")
public String processForm(
        @Valid @ModelAttribute("customer") Customer theCustomer,
        BindingResult theBindingResult) {

    System.out.println("Last name: |" + theCustomer.getLastName() + "|");

    if (theBindingResult.hasErrors()) {
        return "customer-form";
    }
    else {
        return "customer-confirmation";
    }
}

这是bean类

@NotNull(message="is required")
@Size(min=1, message="is required")
private String lastName;

public String getFirstName() {
    return firstName;
}

public void setFirstName(String firstName) {
    this.firstName = firstName;
}

public String getLastName() {
    return lastName;
}

public void setLastName(String lastName) {
    this.lastName = lastName;
}   

}

0 个答案:

没有答案