How do I find out which JAXP implementation is in use and where it was loaded from?

后端 未结 5 628
渐次进展
渐次进展 2020-12-02 10:11

I would like to provide diagnostic information about what JAXP implementation is in use, and which JAR file it was loaded from.

One way to achieve this is to create

5条回答
  •  遥遥无期
    2020-12-02 10:50

    Just add

    -Djaxp.debug=1
    

    to JAVA_OPTS and you will see such information.

    For more detail: https://docs.oracle.com/javase/7/docs/api/javax/xml/parsers/DocumentBuilderFactory.html

提交回复
热议问题