我使用EclipseLink外部映射文件将Java对象编组为XML和JSON。由于我的模型类是在不同的项目中定义的,我无权添加/修改任何文件或类。
那么我如何避免将jaxb.index和jaxb.properties文件保存在我的模型类所在的包中?
答案 0 :(得分:2)
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),我们将使用本机MOXy API来引导JAXBContext
。< / p>
消除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>