EclipseLink MOXy - 如何避免在Model类包中保留jaxb.in​​dex和jaxb.properties文件?

时间:2012-07-23 15:14:01

标签: jaxb eclipselink moxy

我使用EclipseLink外部映射文件将Java对象编组为XML和JSON。由于我的模型类是在不同的项目中定义的,我无权添加/修改任何文件或类。

那么我如何避免将jaxb.in​​dex和jaxb.properties文件保存在我的模型类所在的包中?

1 个答案:

答案 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>