gpt4 book ai didi

java - 我可以用代码替换 jaxb.properties 吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:15:32 29 4
gpt4 key购买 nike

I am using some non-standard extensions从 EclipseLink 的 JAXB 实现中,为了启用该实现,我必须使用 jaxb.properties 对其进行配置。效果很好。

然而,由于构建错误,属性文件没有包含在正确的位置,导致使用默认的 JAXB,它没有任何错误只是继续解析 XML 文件,忽略非标准扩展,留下我有一个不工作的 bean。

为了使其更加稳健,我想摆脱属性文件并在代码中指定上下文配置。由于它们的注释,我已经对 EclipseLink 有编译时依赖性,我不需要在部署时配置这部分(事实上,看到可能出错的地方,我不希望它可配置)。

最佳答案

您可以执行以下操作以获得没有 jaxb.properties 文件的 EclipseLink JAXB (MOXy) JAXBContext:

import java.io.File;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;

import org.eclipse.persistence.jaxb.JAXBContextFactory;

public class Demo {

public static void main(String[] args) throws Exception {
//JAXBContext jc = JAXBContext.newInstance(Animals.class);
JAXBContext jc = JAXBContextFactory.createContext(new Class[] {Animals.class}, null);

Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum6871469/input.xml");
Animals animals = (Animals) unmarshaller.unmarshal(xml);

Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(animals, System.out);
}

}

关于java - 我可以用代码替换 jaxb.properties 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6963996/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com