javax.xml 和 Xerces 支持的可配置属性的完整列表是什么?
What is the complete list of configurable properties supported by javax.xml and Xerces?
我正在调整一个使用 Xerces 的 Java 应用程序。我按照 Whosebug and blogs 的建议明确设置系统 属性 以使 DocumentBuilder
实例化更快,从而解决了一些死锁问题:
System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
"org.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
我想知道 javax.xml
一般支持哪些其他可配置选项,Xerces 具体支持哪些。我无法在手册、用户指南或 JavaDoc 中找到它。是否存在这些选项的完整列表?
谷歌搜索 "Xerces configuration properties" 会直接转到
https://xerces.apache.org/xerces-j/
在页面底部有 "properties" 和 "features" 的链接。
不知道为什么你觉得这很难。