spring-boot-starter-validation的简单使用

spring-boot-starter-validation的简单使用

有时候在项目中需要写很多的if else来过滤参数比较的麻烦,可以使用spring-boot-starter-validation的注解来进行过滤

1.引入依赖
<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-validationartifactId>
    <version>2.5.14version>
dependency>
2.创建vo类

使用了lombok,请自行导入

@Data
public class UserInfoVo {
    
    @NotBlank(message = "名字不能为空")
    private String name;

    @NotBlank(message = "手机号不能为空")
    @Pattern(regexp = "^(13[0-9]|14[5|7]|15[0|1|2|3|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\\d{8}$", message = "手机号格式有误")
    private String phone;

    @NotBlank(message = "地址不能为空")
    private String address;
}
3.全局异常捕获

捕获异常

/**
 * 統一异常处理
 */
@Slf4j
@RestControllerAdvice
public class GlobalExceptionHandler {

    @ExceptionHandler(value = Exception.class)
    public AjaxResult defaultErrorHandler(HttpServletRequest request, Exception exception) throws Exception {
    	log.error(exception.getMessage(), exception);
        AjaxResult result;
		if (exception instanceof BindException){
            result = AjaxResult.error("参数错误 - " + Objects.requireNonNull(((BindException) exception).getFieldError()).getDefaultMessage());
        }else {
			result = AjaxResult.error("服务器异常");
		}
        return result;
    }
}
4.接口如下

在接口中使用vo类来接受参数,加上@Validated才会生效,不然不生效

@PostMapping("/testVo")
@ResponseBody
public AjaxResult testVo(@Validated UserInfoVo infoVo){
    System.out.println(infoVo);
    return AjaxResult.success("成功");
}
5.使用postman进行测试
5.1 参数name为空

spring-boot-starter-validation的简单使用_第1张图片

5.2 手机号为空

spring-boot-starter-validation的简单使用_第2张图片

5.3 手机号不符合正则表达式规则

spring-boot-starter-validation的简单使用_第3张图片

5.4 所有参数符合规则

spring-boot-starter-validation的简单使用_第4张图片

你可能感兴趣的:(spring,java,后端,postman)