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.
有谁知道一个 Java JSON 解析器,它适用于 Java 接口并生成实现(在运行时)。类似于gwtquery中数据绑定的工作方式,但对于服务器端?
GWT AutoBeans 是一种选择。它们可以在客户端和服务器上使用。
http://code.google.com/p/google-web-toolkit/wiki/AutoBean
Jackson 的MrBean扩展是我用过的唯一一个。只需向您的 ObjectMapper 注册 MrBean 模块,Jackson 遇到的任何接口或抽象类都将由 MrBean 自动实现(如果您想为此创建异常,接口或抽象类上的任何注释都将优先)。
编辑:更详细的文章
谷歌 GSON 可能是另一种选择。它支持自定义序列化和反序列化,因此您可以为所欲为:
http://code.google.com/p/google-gson/