LianjiaTech / retrofit-spring-boot-starter

A spring-boot starter for retrofit, supports rapid integration and feature enhancements.(适用于retrofit的spring-boot-starter,支持快速集成和功能增强)
Apache License 2.0
1.78k stars 340 forks source link

数据转码有bug #151

Closed zhuanghuijian closed 1 year ago

zhuanghuijian commented 1 year ago

数据转码请求如果是body参数,对象转json有bug @JsonAlias("userid") private String userId; 应该转的json 格式是userid的。但是还是用到userId了。没有用到alias指定的值。

chentianming11 commented 1 year ago

对象转json使用@JsonProperty,而不是@JsonAlias。@JsonAlias只影响反序列化,不影响序列化。

image