Springboot中@RequestBody接收的对象中包含大写字母开头的参数,无法接收到参数值的问题解决

Springboot中@RequestBody接收的对象中包含大写字母开头的参数,无法接收到参数值的问题解决_第1张图片

 

Java接收对象中包含以上参数,无法接收参数值,可以使用@JsonProperty注解

@JsonProperty注解的使用需要jackson的maven依赖

<dependency>
    <groupId>com.fasterxml.jackson.coregroupId>
    <artifactId>jackson-databindartifactId>
    <version>2.5.3version>
dependency>

推荐阅读:

https://blog.csdn.net/weixin_43483983/article/details/99729297

@JsonProperty注解介绍  https://www.cnblogs.com/toSeeMyDream/p/7885015.html

 
 
 

你可能感兴趣的:(Springboot中@RequestBody接收的对象中包含大写字母开头的参数,无法接收到参数值的问题解决)