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

后端 未结 5 625
渐次进展
渐次进展 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:38

    it is easy, you just set

    System.setProperty("jaxp.debug", "1");
    

    the track will tell you whick impl,and whick way jaxp use.

提交回复
热议问题