gpt4 book ai didi

REST Controller 中的 Spring Boot 绑定(bind)和验证错误处理

转载 作者:行者123 更新时间:2023-12-04 03:14:59 25 4
gpt4 key购买 nike

当我有以下带有 JSR-303(验证框架)注释的模型时:

public enum Gender {
MALE, FEMALE
}

public class Profile {
private Gender gender;

@NotNull
private String name;

...
}

以及以下 JSON 数据:
{ "gender":"INVALID_INPUT" }

在我的 REST Controller 中,我想同时处理绑定(bind)错误( gender 属性的无效枚举值)和验证错误( name 属性不能为空)。

以下 Controller 方法不起作用:
@RequestMapping(method = RequestMethod.POST)
public Profile insert(@Validated @RequestBody Profile profile, BindingResult result) {
...
}

这给出了 com.fasterxml.jackson.databind.exc.InvalidFormatException发生绑定(bind)或验证之前的序列化错误。

经过一番摆弄,我想出了这个自定义代码,它可以满足我的需求:
@RequestMapping(method = RequestMethod.POST)
public Profile insert(@RequestBody Map values) throws BindException {

Profile profile = new Profile();

DataBinder binder = new DataBinder(profile);
binder.bind(new MutablePropertyValues(values));

// validator is instance of LocalValidatorFactoryBean class
binder.setValidator(validator);
binder.validate();

// throws BindException if there are binding/validation
// errors, exception is handled using @ControllerAdvice.
binder.close();

// No binding/validation errors, profile is populated
// with request values.

...
}

基本上这段代码的作用是序列化为通用映射而不是模型,然后使用自定义代码绑定(bind)到模型并检查错误。

我有以下问题:
  • 自定义代码是这里的方式还是在 Spring Boot 中有更标准的方式来执行此操作?
  • @Validated 如何注释工作?如何制作自己的自定义注释,其工作方式类似于 @Validated封装我的自定义绑定(bind)代码?
  • 最佳答案

    这是我在我的一个项目中使用的用于在 Spring Boot 中验证 REST api 的代码,这与您的要求不同,但相同.. 检查这是否有帮助

    @RequestMapping(value = "/person/{id}",method = RequestMethod.PUT)
    @ResponseBody
    public Object updatePerson(@PathVariable Long id,@Valid Person p,BindingResult bindingResult){
    if (bindingResult.hasErrors()) {
    List<FieldError> errors = bindingResult.getFieldErrors();
    List<String> message = new ArrayList<>();
    error.setCode(-2);
    for (FieldError e : errors){
    message.add("@" + e.getField().toUpperCase() + ":" + e.getDefaultMessage());
    }
    error.setMessage("Update Failed");
    error.setCause(message.toString());
    return error;
    }
    else
    {
    Person person = personRepository.findOne(id);
    person = p;
    personRepository.save(person);
    success.setMessage("Updated Successfully");
    success.setCode(2);
    return success;
    }

    成功.java
    public class Success {
    int code;
    String message;

    public int getCode() {
    return code;
    }

    public void setCode(int code) {
    this.code = code;
    }

    public String getMessage() {
    return message;
    }

    public void setMessage(String message) {
    this.message = message;
    }
    }

    错误.java
    public class Error {
    int code;
    String message;
    String cause;

    public int getCode() {
    return code;
    }

    public void setCode(int code) {
    this.code = code;
    }

    public String getMessage() {
    return message;
    }

    public void setMessage(String message) {
    this.message = message;
    }

    public String getCause() {
    return cause;
    }

    public void setCause(String cause) {
    this.cause = cause;
    }

    }

    您也可以在这里查看: Spring REST Validation

    关于REST Controller 中的 Spring Boot 绑定(bind)和验证错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34728144/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com