解决400异常:The request sent by the client was syntactically incorrect

 请求参数对象中有这么个属性:   

    private String MESSAGE_ID;

    public void setMESSAGE_ID(String MESSAGE_ID){
        this.MESSAGE_ID = MESSAGE_ID;
    }
    public String getMESSAGE_ID(){
        return this.MESSAGE_ID;
    }

controller的接受方法是这样的:

    @ResponseBody
    @RequestMapping( value = "/change-subscriber-status" )
    public BaseResp changeSubscriberStatus(@RequestBody StatusDTO statusDTO) {
        logger.info("change-subscriber-status para: "+JSON.toJSONString(statusDTO));
        。。。

     }

这么写其实spring mvc的MappingJackson2HttpMessageConverter消息转换器会认为接受参数项是message_ID,因为setter是setMESSAGE_ID(默认按照spring的java bean处理规范)

后台debug日志能清楚看出来:

2022-04-02 16:43:11,942 DEBUG [org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver] Resolving exception from handler [public com.BaseResp com.AcceptAppService.changeSubscriberStatus(com.StatusDTO)]: org.springframework.http.converter.HttpMessageNotReadableException: Could not read JSON: Unrecognized field "MESSAGE_ID" (class com.StatusDTO), not marked as ignorable (known properties: "message_ID"])

【解决方式】

属性定义时引入@com.fasterxml.jackson.annotation.JsonProperty.JsonProperty

  @JsonProperty(value = "MESSAGE_ID")
  private String MESSAGE_ID;

如此fasterxml.jackson反序列化的时候就能按这个名称解析json串

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值