我正在使用 EclipseLink 外部映射文件将 Java 对象编组为 XML 和 JSON。由于我的模型类是在不同的项目中定义的,因此我无权添加/修改任何文件或类。
那么如何避免将 jaxb.index 和 jaxb.properties 文件保留在模型类所在的包中?
我正在使用 EclipseLink 外部映射文件将 Java 对象编组为 XML 和 JSON。由于我的模型类是在不同的项目中定义的,因此我无权添加/修改任何文件或类。
那么如何避免将 jaxb.index 和 jaxb.properties 文件保留在模型类所在的包中?
JAVA模型
Belos 是我将用于此示例的 Java 模型:
富
package forum11615376;
public class Foo {
private Bar bar;
public Bar getBar() {
return bar;
}
public void setBar(Bar bar) {
this.bar = bar;
}
}
酒吧
package forum11615376;
public class Bar {
private String value;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
外部映射文件 (oxm.xml)
<?xml version="1.0"?>
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
package-name="forum11615376">
<java-types>
<java-type name="Foo">
<xml-root-element name="FOO"/>
<java-attributes>
<xml-element java-attribute="bar" name="BAR"/>
</java-attributes>
</java-type>
</java-types>
</xml-bindings>
演示
下面的演示代码演示了如何指定外部映射文件。
排除jaxb.properties
要消除jaxb.properties
文件(这是指定 JAXB 提供程序的标准机制,请参阅:http ://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html ),我们将使用本机用于引导JAXBContext
.
排除jaxb.index
在此示例中,该oxm.xml
文件的作用与jaxb.index
. 由于我们需要传递一些东西来创建JAXBContext
我们将使用一个空的Class[]
.
package forum11615376;
import java.util.*;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import org.eclipse.persistence.jaxb.*;
public class Demo {
public static void main(String[] args) throws Exception {
Map<String, Object> properties = new HashMap<String, Object>(1);
properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, "forum11615376/oxm.xml");
JAXBContext jc = JAXBContextFactory.createContext(new Class[] {}, properties);
Bar bar = new Bar();
bar.setValue("Hello World");
Foo foo = new Foo();
foo.setBar(bar);
Marshaller marshaller =jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(foo, System.out);
}
}
输出
下面是运行演示代码的输出。如您所见,已应用映射元数据。
<?xml version="1.0" encoding="UTF-8"?>
<FOO>
<BAR>
<value>Hello World</value>
</BAR>
</FOO>