当前位置:网站首页>@Requestbody solution get parameter is null

@Requestbody solution get parameter is null

2022-06-25 04:15:00 susu1083018911

postman send out post data json Format :

{
"State":"1"
}

RequestBody When encapsulating parameters, it will json Convert to lowercase , In this case, it doesn't match the attribute name of our entity class , Therefore, the encapsulation cannot be completed .

@JsonProperty("State")
String State;

原网站

版权声明
本文为[susu1083018911]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/176/202206250138524890.html