检查我的 JAXB 实现

发布于 2024-12-22 22:02:38 字数 368 浏览 2 评论 0原文

我正在尝试使用 Eclipselink 的 MOXy。我将 jaxb.properties 文件放在与带注释的类相同的目录中,它包含条目:

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

无论如何我可以确定这个实现正在被执行在运行时使用? 例如,我可以通过检查以下内容来检查我的 StAX 实现是否为 Woodstox:

inputFactory.getClass().getName() 是否等于 com.ctc.wstx.stax.WstxInputFactory

我可以执行类似的操作来检查我的 JAXB 实现吗?

谢谢。

I am trying to use Eclipselink's MOXy. I put jaxb.properties file in the same directory as my annotated classes and it contains the entry:

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

Is there anyway I can be sure this implementation is being used at runtime?
For example, I can check my StAX implementation is Woodstox by checking:

inputFactory.getClass().getName() is equal com.ctc.wstx.stax.WstxInputFactory

Is there anything similar I can do to check my JAXB implementation?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

菩提树下叶撕阳。 2024-12-29 22:02:38

来自这个答案

package example;

import javax.xml.bind.JAXBContext;
import example.foo.Foo;

public class Demo {

    public static void main(String[] args) throws Exception{
        System.out.println(JAXBContext.newInstance(Foo.class).getClass());
        // If MOXy is used, this will print:
        // class org.eclipse.persistence.jaxb.JAXBContext
    }

}

From this answer:

package example;

import javax.xml.bind.JAXBContext;
import example.foo.Foo;

public class Demo {

    public static void main(String[] args) throws Exception{
        System.out.println(JAXBContext.newInstance(Foo.class).getClass());
        // If MOXy is used, this will print:
        // class org.eclipse.persistence.jaxb.JAXBContext
    }

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文