返回顶部
首页 > 资讯 > 精选 >Spring WebFlux如何实现参数校验的示例代码
  • 209
分享到

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

2023-06-20 20:06:39 209人浏览 安东尼
摘要

这篇文章主要为大家展示了“spring WEBFlux如何实现参数校验的示例代码”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Spring WebFlux如何实现参数校验的示例代码”这篇文章吧。

这篇文章主要为大家展示了“spring WEBFlux如何实现参数校验的示例代码”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Spring WebFlux如何实现参数校验的示例代码”这篇文章吧。

使用步骤如下:

创建校验器 Validator

运用校验器

抛出异常,返回 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 {  @Override  public boolean supports(Class<?> clazz) {    return Person.class.isAssignableFrom(clazz);  }  // 校验参数的方法  @Override  public 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 {  @Autowired  private PersonRepository repository;  @Autowired  private PersonValidator validator;  public Mono<ServerResponse> savePerson(ServerRequest request) {    Mono<Person> 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 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 WebFlux如何实现参数校验的示例代码

至此,Webflux 的Function Endpoint 的参数校验的使用结束了。

以上是“Spring WebFlux如何实现参数校验的示例代码”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网精选频道!

--结束END--

本文标题: Spring WebFlux如何实现参数校验的示例代码

本文链接: https://lsjlt.com/news/299970.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作