Ошибка проверки формы Spring и Hibernate не отображается - PullRequest
0 голосов
/ 10 июня 2018

Это мой customer.java класс, использующий в качестве bean-компонента

package com.zeeshan.form;

import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;

public class Customer {

    private String firstName;

    @NotNull(message="is required")
    @Size(min=1)
    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;
    }


}

CustomerController.java

package com.zeeshan.form;

import javax.validation.Valid;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/customer")
public class CustomerController {

    @RequestMapping("/showForm")
    public String showFormModel(Model theModel) {
        theModel.addAttribute("customer", new Customer());
        return "customer-form";
    }

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

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

            return "customer-confirmation";
        }

    }
}

customer-form.jsp

<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<style>
    .error{
        color: red;
    }
</style>
</head>
<body>
    <h2>Customer Registeration Form</h2>
    <form:form action="processForm" modelAttribute="customer">
        First Name : <form:input path="firstName"/>
        <br><br>

        Last Name (*) : <form:input path="lastName"/>
        <form:errors path="lastName" cssClass="error" />
        <br><br>
        <input type="submit" value="Submit" />
    </form:form>
</body>
</html>

Спящий валидаторне работаетмой код работает правильно, но не выдает никакой ошибки. Я прикрепляю файловую структуру

следующие библиотеки используются

hibernate version 6.0.2

spring version 5.0.6 

1 Ответ

0 голосов
/ 11 июня 2018

Код выглядит хорошо.Читая ваш вопрос, кажется, вы можете быть немного запутаны между этими двумя:

Hibernate ORM: Реализация JPA

Hibernate Validator: Реализация Bean Validation

Итак, чтобы Bean Validation работал, вам нужно добавить Hibernate Validator в classpath.Значит просто добавьте его в зависимости вашего build.gradle / pom.xml, то есть сценария сборки вашего инструмента сборки.

...