SpringMVC_18_JSR303数据校验 和 提示消息的国际化

作用,在注册界面判断你的注册数据是否合法,比如是否符合一个基本的邮箱格式。

  • JSR 303 是Java为Bean数据合法性校验提供的标准框架,它已经包含在JavaEE6.0中.

  • JSR 303 通过在Bean属性上标注类似于@NotNull、@Max等标准的注解指定校验规则,并通过标准的验证接口对Bean进行验证。

SpringMVC_18_JSR303数据校验 和 提示消息的国际化_第1张图片

  • Hibernate Validator是JSR 303 的一个参考实现,除支持所有标准的校验注解外,它还支持以下的扩展注解

SpringMVC_18_JSR303数据校验 和 提示消息的国际化_第2张图片

一、如何校验?注解?

①使用JSR 303 验证标准

②加入hibernate validator验证框架的jar包

SpringMVC_18_JSR303数据校验 和 提示消息的国际化_第3张图片

③在SpringMVC配置文件中添加mvc:annotation-driven/

④需要在bean的属性上添加对应的注解

package com.springmvc.crud.entities;

import org.hibernate.validator.constraints.Email;
import org.hibernate.validator.constraints.NotEmpty;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.format.annotation.NumberFormat;

import javax.validation.constraints.Past;
import java.util.Date;

public class Employee {
   

    private Integer id;

    @NotEmpty //注意这里
    private String lastName;

    @Email //注意这里
    private String email;

    //1 male 0 female
    private Integer gender;

    private Department department;

    @Past  //注意这里
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date birth;


    @NumberFormat(pattern = "#,###,###.#")
    private Float salary;

省略get/set,toString

    public Employee(Integer id, String lastName, String email, Integer gender, Department department) {
   
        this.id = id;
        this.lastName = lastName;
        

你可能感兴趣的:(SpringMVC,SpringMVC,springmvc,spring,JSR303数据校验,提示消息的国际化)