如何使用 Jackson 序列化/反序列化第三方 Java 对象

发布于 2024-11-30 12:46:37 字数 165 浏览 1 评论 0原文

举个例子,我想序列化/反序列化 Slick2d 的 Animation 的一个对象使用杰克逊的类。最简单的方法是什么?

As an example, I'd like to serialize/deserialize one object of Slick2d's Animation class using Jackson. What is the simplest way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

慕巷 2024-12-07 12:46:37

如果您想控制第三方类上生成的 json,您可以注释混合接口。

在这里阅读更多内容:http://wiki.fasterxml。 com/JacksonMixInAnnotations

更新:当前文档 (v2+) 位于:https://github.com/FasterXML/jackson-docs/wiki/JacksonMixInAnnotations

You can annotate a mix-in interface if you want to control the generated json on third party classes.

read more here: http://wiki.fasterxml.com/JacksonMixInAnnotations

Update: The current documentation (v2+) is here: https://github.com/FasterXML/jackson-docs/wiki/JacksonMixInAnnotations

孤檠 2024-12-07 12:46:37

就像任何对象一样 - 将其传递给 objectMapper.readValue(..) / objectMapper.writeValue(..)

Just as any object - pass it to objectMapper.readValue(..) / objectMapper.writeValue(..)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文