使用 Jersey 正确返回 org.w3c.dom.Document 作为 JSON
我有一个返回 org.w3c.dom.Document 类型的函数,我的 Jersey 资源允许它以 XML 或 JSON 形式返回。它返回 XML 很好,但是,对于 JSON,它返回一个简单的字符串,这只是使用 Application/JSON 的 XML。如何让它正确编码为 JSON?
我愿意将函数的返回类型更改为可以由 Jersey 正确序列化的类型
I have a function which returns type org.w3c.dom.Document, and my Jersey resource lets it return either as XML or JSON. It returns the XML fine, however, for JSON, it returns a simple string, which is just the XML using Application/JSON. How can I make it encode to JSON properly?
I'm open to changing the return type of the function to something that can properly be serialized by Jersey
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须编写自己的 MessageBodyWriter application/json 媒体类型和 org.w3c.dom.Document 类。
You would have to write your own MessageBodyWriter for application/json media type and org.w3c.dom.Document class.