Your Setup
When I move these all to a separate
lib, a jar file, then the namespace
replacing fails to function and all
namespaces continue to be ns1 on a
marshal.
In this setup you have the model classes and the jaxb.properties in the same jar file? You will need to ensure that the jaxb.properties still be in the same package as your model classes:
- com\example\Foo.class
- com\example\Bar.class
- com\example\jaxb.properties
There is not jaxb.properties not found
exception thrown.
Is your jaxb.properties being found?
There is no exception thrown when a jaxb.properties file is not present, since the JAXB runtime will just default to a JAXB impl (either the RI, or one define via the META-INF/services mechanism. You could test if it is finding your jaxb.properties file by but an invalid JAXBContextFactory entry, this would create an exception like:
javax.xml.bind.context.factory=INVALID_ENTRY
would cause the following exception:
Exception in thread "main" javax.xml.bind.JAXBException
- with linked exception:
[java.lang.ClassNotFoundException: INVALID_ENTRY]
at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:187)
at javax.xml.bind.ContextFinder.find(ContextFinder.java:331)
at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:574)
at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:522)
at forum22.Demo.main(Demo.java:10)
Caused by: java.lang.ClassNotFoundException: INVALID_ENTRY
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
at javax.xml.bind.ContextFinder.safeLoadClass(ContextFinder.java:481)
at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:185)
... 4 more