通过 Jersey Rest 将 XSLT 和 XSD 架构应用于 xml 输出
有没有办法通过 REST 服务将 xsl 和 xsd 应用于 xml 输出?我正在使用 Jersey 1.4 和 JAXB 2.2 jre 实现。谢谢。无法使用 MOXy 或其他 JaxB 实现。谢谢。
Is there a way to apply an xsl and xsd to an xml output via REST services? I'm using Jersey 1.4 with JAXB 2.2 jre implementation. Thanks. Can't use MOXy or other JaxB implementations. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 JAX-RS 服务返回
javax.ws.rs.core.StreamingOutput
。在StreamingOutput
的实现中,您可以将 JAXB 与 XSLT 和 XSD 结合使用。You could return a
javax.ws.rs.core.StreamingOutput
from your JAX-RS service. In your implementation ofStreamingOutput
you could use JAXB with XSLT and XSD.