FlexJSON Exclude Properties Upon Deserialization
问题 I'm receiving a JSON response from a web service, but for various reasons I don't want to have certain properties deserialized in the final response object. For example I have: public class Foo { private String bar; private int baz; //getters & setters } The JSON response I'm getting back has both properties, but upon deserialization I don't want "bar" to be set. The reason for this is that the property they're sending is a long, but ours is a String, so deserializing throws an