SpringBoot 表单验证@Valid(七)

SpringBoot提供了强大的表单验证功能实现。即校验用户提交的数据的合理性的,比如是否为空了,年龄必须是不小于18 ,是否是纯数字等等。

 *学生类
 * 
 * @author Administrator
 * id 编号 name用户名 age年龄
 *
 */
@Entity
@Table(name = "t_student")
public class Student {

	@Id
	@GeneratedValue
	private int id;
	
	@NotEmpty(message="姓名不能为空!")
	@Column(length = 50)
	private String name;
	
	
	@NotNull(message="年龄不能为空!")
	@Min(value=18,message="年龄必须大于18岁!")
	private Integer  age ;

验证限制 说明 
@Null    限制只能为null 
@NotNull   限制必须不为null 
@AssertFalse  限制必须为false 
@AssertTrue   限制必须为true 
@DecimalMax(value)   限制必须为一个不大于指定值的数字 
@DecimalMin(value)    限制必须为一个不小于指定值的数字 
@Digits(integer,fraction)   限制必须为一个小数,且整数部分的位数不能超过integer,小数部分的位数不能超过fraction 
@Future    限制必须是一个将来的日期 
@Max(value)   限制必须为一个不大于指定值的数字 
@Min(value)   限制必须为一个不小于指定值的数字 
@Pattern(value)   限制必须符合指定的正则表达式 
@Size(max,min)   限制字符长度必须在min到max之间 
@Past    验证注解的元素值(日期类型)比当前时间早 
@NotEmpty  验证注解的元素值不为null且不为空(字符串长度不为0、集合大小不为0) 
@NotBlank   验证注解的元素值不为空(不为null、去除首位空格后长度为0),不同于@NotEmpty,@NotBlank只应用于字符串且在比较时会去除字符串的空格 

@Email   验证注解的元素值是Email,也可以通过正则表达式和flag指定自定义的email格式 

dao接口

SpringBoot 表单验证@Valid(七)_第1张图片

service接口

SpringBoot 表单验证@Valid(七)_第2张图片

service实现的类

/**
 * 业务类
 * 
 * @author Administrator
 *
 */
@Service("service")
public class StudentServicetImpl implements StudentService {

	// 注入dao
	@Autowired
	private StudentDao dao;

	@Override
	public void add(Student student) {
		// 添加方法
		dao.save(student);
	}

}

controller控制

import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.hlx.entity.Student;
import com.hlx.service.StudentService;

/**
 * 账户Controoler类
 * 
 * @author Administrator
 *
 */
@RestController
@RequestMapping("/student")
public class StudentController {

	@Autowired
	private StudentService service;

	/**
	 * 
	 * @param student 学生类
	 * @param bindResult  绑定结果
	 * @return
	 */
	@PostMapping("/save")
	public String save(@Valid Student student, BindingResult bindResult) {

		// 如果有错误
		if (bindResult.hasErrors()) {
			// 返回提示信息
			return bindResult.getFieldError().getDefaultMessage();

		} else {
			// 添加
			service.add(student);
			return "ok";
		}
	}

}

index.html页面






	用户名:
	
	
年龄:

启动工程:

SpringBoot 表单验证@Valid(七)_第3张图片

SpringBoot 表单验证@Valid(七)_第4张图片

SpringBoot 表单验证@Valid(七)_第5张图片

数据库数据:

SpringBoot 表单验证@Valid(七)_第6张图片

你可能感兴趣的:(Spring,Boot)