例如订单详情:Order { String id; String amount; User { String id; String pswd; String phone; } }如何配置filter,可以返回数据 { "id": 11, “user": { "id":1111, "phone":"135956128" } }
Order { String id; String amount; User { String id; String pswd; String phone; } }
{ "id": 11, “user": { "id":1111, "phone":"135956128" } }
qlfbtfca1#
过滤器是根据类型过滤的。 配置User.class 的 “paswd” 字段为过滤就可以了com.alibaba.fastjson.serializer.SimplePropertyPreFilter
chhqkbe12#
https://github.com/alibaba/fastjson/wiki/Samples-PropertyFilter
2条答案
按热度按时间qlfbtfca1#
过滤器是根据类型过滤的。 配置User.class 的 “paswd” 字段为过滤就可以了
com.alibaba.fastjson.serializer.SimplePropertyPreFilter
chhqkbe12#
https://github.com/alibaba/fastjson/wiki/Samples-PropertyFilter