springboot 整合Hibernate Validator

本文介绍了如何在SpringBoot项目中整合Hibernate Validator进行数据验证,包括@NotEmpty、@NotBlank、@NotNull等常用注解的使用,以及如何编写测试模块、异常处理类和RESTful接口进行验证测试。
摘要由CSDN通过智能技术生成

Hibernate Validator是一款简单的验证框架

1.常用注解

1、常用的注解
@NotEmpty   用在集合类  ————验证注解的元素不为null 不为空
@NotBlank    用在String上面  ————验证注解的元素 不为null 不为空
@NotNull      用在基本类型上(不包含基本数据类型)  ————验证注解的元素值不是null
@Valid          启用效验
 

2.导包

<!--      validation依赖  -->
        <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-validation</artifactId>
        <version>2.3.5.RELEASE</version>
         </dependency>

3.编写测试模块

package com.sky.controller;

import com.sky.pojo.DataResult;
import com.sky.pojo.User;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;

import javax.validation.Valid;

@RestController
@Api(tags = "测试单元")
public class TestController {
    @PostMapping("/error")
    @ApiOperation(value = "测试Validator抛出业务异常接口")
    public DataResult testvalidError(@RequestBody @Valid User user){
        return DataResult.ok();
    }


}

需要加上注解valid才能开启验证</

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值