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.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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
    }

}
link|improve this answer
2  
Yeah some more info here as well: blog.bdoughan.com/2011/05/… – More Than Five Dec 24 '11 at 21:31
1  
Yup, Blaise is an awesome source of information for all things JAXB. I didn't notice that he made a blog post about it! – Matt Ball Dec 24 '11 at 21:32
Yeah it's pretty good. Editors you can delete this thread if you want. – More Than Five Dec 24 '11 at 22:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.