大驼峰或纯大写被JSON.toJSONString转为首字母小写解决方法
问题:大驼峰或纯大写被JSON.toJSONString转为首字母小写解决方法
背景:JSON.toJSONString默认把对象属性的字段转换成小驼峰,有些特殊场景必须用特定的格式:全大写或者大驼峰,或者是对接他人系统
解决办法:在需要特定格式的字段上加注解@JSONField
举例说明:
@Data
public class Request {
@NotEmpty(message = "编号不能为空")
@ApiModelProperty(value = "编号")
@JSONField(name = "ID")
private String id;
}