Spring|Spring WebFlux实现参数校验的示例代码

请求参数校验,在实际的应用中很常见,网上的文章大部分提供的使用注解的方式做参数校验。本文主要介绍 Spring Webflux Function Endpoint 使用 Spring Validation 来校验请求的参数。使用上一篇文章的示例来演示。
使用步骤如下: 1.创建校验器 Validator
2.运用校验器
3.抛出异常,返回 http status 400 错误
PersonValidator.java

package com.example.springbootdemo.webflux.restful; import org.springframework.stereotype.Component; import org.springframework.validation.Errors; import org.springframework.validation.ValidationUtils; import org.springframework.validation.Validator; @Componentpublic class PersonValidator implements Validator {@Overridepublic boolean supports(Class clazz) {return Person.class.isAssignableFrom(clazz); }// 校验参数的方法@Overridepublic void validate(Object o, Errors errors) {ValidationUtils.rejectIfEmpty(errors, "name", "name.required"); ValidationUtils.rejectIfEmpty(errors, "age", "age.required"); Person p = (Person) o; if (p.getAge() != null && p.getAge() < 0) {errors.rejectValue("age", "negative.value"); } else if (p.getAge() != null && p.getAge() > 200) {errors.rejectValue("age", "too.old"); }}}

校验器在 savePerson 方法中的使用
@Slf4j@Componentpublic class PersonHandler {@Autowiredprivate PersonRepository repository; @Autowiredprivate PersonValidator validator; public Mono savePerson(ServerRequest request) {Mono personMono = request.bodyToMono(Person.class).doOnNext(this::validate); return ServerResponse.ok().contentType(MediaType.APPLICATION_JSON).body(this.repository.savePerson(personMono), Void.class); }public void validate(Person person) {Errors errors = new BeanPropertyBindingResult(person, Person.class.getName()); validator.validate(person, errors); if (errors.hasErrors()) {// 抛出 http status 400 异常throw new ServerWebInputException(errors.toString()); }}// .... 省略}

请求效果:

Spring|Spring WebFlux实现参数校验的示例代码
文章图片

官方校验参数示例的地址 https://docs.spring.io/spring-framework/docs/current/reference/html/web-reactive.html
使用 Spring 官方文档提供的示例不会抛出 http code 400 错误,返回的是http code 为 200。
接下来,我们来看一下Validator 接口中的两个方法 supportsvalidate
  • supports(Class) : 判断当前的校验器用指定的类上。
  • validate(Object, org.springframework.validation.Errors) : 校验给定的对象,如果出现错误,就给Errors 注册 Error 信息。
另外,Spring 还提供了非常好用的 ValidationUtils 的工具类,提供了静态的方法
  • rejectIfEmpty
  • rejectIfEmptyOrWhitespace
全局异常的使用
@Configuration@Slf4jpublic class GlobalErrorConfig {private ObjectMapper objectMapper = new ObjectMapper(); @Bean@Order(-2)public WebExceptionHandler exceptionHandler() {return (ServerWebExchange serverWebExchange, Throwable t) -> {DataBuffer dataBuffer = serverWebExchange.getResponse().bufferFactory().allocateBuffer(); Result result = new Result(); if (t instanceof ServerWebInputException) {ServerWebInputException exception = (ServerWebInputException) t; result.setCode(exception.getStatus().value()); result.setMessage(exception.getReason()); } else {result.setCode(HttpStatus.INTERNAL_SERVER_ERROR.value()); result.setMessage(HttpStatus.INTERNAL_SERVER_ERROR.toString()); }try {dataBuffer.write(objectMapper.writeValueAsBytes(result)); } catch (JsonProcessingException e) {log.error(NestedExceptionUtils.buildMessage("write error", e)); }ServerHttpResponse response = serverWebExchange.getResponse(); response.setRawStatusCode(result.getCode()); return response.writeWith(Mono.just(dataBuffer)); }; }}

Result.java
import lombok.Getter; import lombok.Setter; @Getter@Setterpublic class Result {private Integer code; private String message; }

请求效果:

Spring|Spring WebFlux实现参数校验的示例代码
文章图片

【Spring|Spring WebFlux实现参数校验的示例代码】至此,Webflux 的Function Endpoint 的参数校验的使用结束了。
参考:
WebFlux Handler Validation
Spring Validator
到此这篇关于Spring WebFlux实现参数校验的示例代码的文章就介绍到这了,更多相关Spring WebFlux 参数校验内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    推荐阅读