它就在那里,在它应该被索引的包中。不过,当我打电话时
JAXBContext jc = JAXBContext.newInstance("my.package.name");
我得到一个 JAXBException 说
“my.package.name”不包含 ObjectFactory.class 或 jaxb.index
虽然它确实包含两者。
什么有效,但不是我想要的,是
JAXBContext jc = JAXBContext.newInstance(my.package.name.SomeClass.class);
来自其他人的这个问题出现在相当多的邮件列表和论坛上,但似乎没有得到答案。
我在 OpenJDK 6 上运行它,所以我得到了源包并将我的调试器放到了库中。它首先查找 jaxb.properties,然后查找系统属性,但均未找到,它尝试使用 com.sun.internal.xml.bind.v2.ContextFactory 创建默认上下文。在那里,异常被抛出(内部ContextFactor.createContext(String ClassLoader, Map)
),但我看不到发生了什么,因为源不在这里。
预计到达时间:
从 ContentFactory 的源代码来看,我在这里找到了,这可能是一段无法按预期工作的代码:
/**
* Look for jaxb.index file in the specified package and load it's contents
*
* @param pkg package name to search in
* @param classLoader ClassLoader to search in
* @return a List of Class objects to load, null if there weren't any
* @throws IOException if there is an error reading the index file
* @throws JAXBException if there are any errors in the index file
*/
private static List<Class> loadIndexedClasses(String pkg, ClassLoader classLoader) throws IOException, JAXBException {
final String resource = pkg.replace('.', '/') + "/jaxb.index";
final InputStream resourceAsStream = classLoader.getResourceAsStream(resource);
if (resourceAsStream == null) {
return null;
}