Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Jackson 是否提供侦听器来拦截反序列化?被序列化和反序列化的对象包含一些存储在 MySql 中的标准对象。我不想创建冗余信息,而是希望在序列化过程中简单地编写对象的代码/ID,并在反序列化过程中通过查找来加载对象。
我目前通过 Jaxb 在 xml 中执行此操作并扩展 Unmarshaller.Listener。我正在将这部分从 xml/jaxb 迁移到 json/jackson。
提前致谢。