Suppose I am having POJO which contains 10 fields and getter/setter for each one. I would like to get the selected fields from that POJO during serialization and deserialization depending on some conditions. Can i achieve this using Jackson?? If so then can some on help me out and give some idea?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
For serialization, you could read "Filtering properties with Jackson" for some possibilities. As to deserialization, one possibility would be to first bind to a Map or JsonNode, then pick properties from there -- filtering options do not work deserialization. |
|||
|