JSF 2 Mojarra —— 我可以将应用程序配置为始终使用编号 XML 实体而不是命名实体吗?
我注意到 mojarra 在很多情况下输出命名的 html 实体,而不是编号的实体。当使用 application/xhtml+xml 内容类型时,这似乎会导致问题。我查看了一些 mojarra 配置选项,但无法找到将应用程序配置为始终使用编号实体的方法。这可能吗?
I'm noticing that mojarra outputs named html entities in many cases as opposed to numbered entities. This seems to cause issues when using an application/xhtml+xml content type. I looked through some mojarra configuration options but wasn't able to find a way to configure the application to always use numbered entities. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSF 的标准 renderkit 旨在输出 (X)HTML,而不是 XML。您需要提供第 3 方渲染工具包或创建输出 XML 的自定义渲染工具包。然而,我没有想到任何第三方。
除此之外,如果您打算根据 Web 请求返回 XML,那么 JSF 并不是真正适合该工作的工具。最好前往 JAX-WS 或 JAX-RS。
顺便说一句,正确的 XML 内容类型不是
application+xml
而是application/xml
。The standard renderkit of JSF is designed to output (X)HTML, not XML. You need to supply a 3rd party renderkit or to create a custom renderkit which outputs XML. No 3rd party ones comes to mind however.
Apart from that, if you intend to return XML upon a web request, then JSF is not really the right tool for the job. Better head to JAX-WS or JAX-RS.
By the way, the right XML content type is not
application+xml
butapplication/xml
.