Does Jackson provide a listener to intercept de-serialization? The object being serialized and de-serialized contains some standard objects that are stored in MySql. Rather than creating redundant info, i wish to simply write the code/id of the object during serialization and load the object through a look up during de-serialization.
I currently do it in xml through Jaxb and extending Unmarshaller.Listener. I am migrating this piece from xml/jaxb to json/jackson.
Thanks in advance.