撒克逊 Xalan JSP
我有一个 JSP,它将 XSL 附加到从数据库中提取的 XML 文档。 该应用程序正在使用 Saxon 解析器,但我的 XML 需要使用 Xalan 解析器。 JSP 页面可以覆盖要使用的解析器吗?
I have a JSP which attaches a XSL to an XML document pulled from a database. The application is using the Saxon Parser but my XML needs to use the Xalan one. Can a JSP page override which parser to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有使用默认(Saxon)的 TransformerFactory,而是使用 Xalan 特定的类 TransformerFactoryImpl。 一切似乎都在发挥作用。
Instead of using TransformerFactory which was using the default (Saxon) I am using the class TransformerFactoryImpl which is specfic to Xalan. All seems to be working.