我们可以使用 Netbeans 7 执行 XSLT 2.0 吗?
在当前形式下,Netbeans 仅支持 XSLT 1.0,不支持 XSLT 2.0。
我们如何将 XSLT 2.0 与 Netbeans 7 结合使用?
In its current form, Netbeans only supports XSLT 1.0 and does not support XSLT 2.0.
How do we use XSLT 2.0 with Netbeans 7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何使 Saxon 成为 JRE 安装默认 XSLT 处理器:(
因此,不仅 Netbeans,其他 Java 应用程序也可能受到影响。)
在 jre/lib 目录中创建一个包含以下内容的 jaxp.properties 文件:
javax.xml.transform.TransformerFactory = net.sf.saxon.TransformerFactoryImpl
(重新启动 Netbeans。)通过执行 XSL 转换来检查是否成功: 如果已使用 Saxon,XSLT 处理器输出将包含“使用文件中的 net.sf.saxon.Controller XSLT 处理器...”
[使用 NetBeans 7.3.1 / Saxon-HE 进行测试9.4.0 / JRE 1.7.0_17]
还有其他方法可以配置 Java 应用程序中使用的“TransformerFactory”。请参阅 JAXP 常见问题解答。当然,除了 Saxon 之外,还有其他 XSLT 处理器可插入 Java API for XML Processing (JAXP)。
How to make Saxon the JRE-installation-default XSLT Processor:
(So not only for Netbeans, other Java applications might be impacted as well.)
In the jre/lib dir create a jaxp.properties file with following content:
javax.xml.transform.TransformerFactory = net.sf.saxon.TransformerFactoryImpl
(Restart Netbeans.) Check success by doing an XSL Transformation: If Saxon has been used the XSLT Processor output will contain "Using net.sf.saxon.Controller XSLT processor from file ..."
[Tested with NetBeans 7.3.1 / Saxon-HE 9.4.0 / JRE 1.7.0_17]
There are other ways of configuring the "TransformerFactory" used in a Java application. See the JAXP FAQ. And of course, there are also other XSLT processors than Saxon that plug into the Java API for XML Processing (JAXP).