MOXy / JAXB接口注释

时间:2013-06-02 01:29:16

标签: jaxb moxy

我有一个模型,它包含一个带有一个带注释属性的接口,以及一个不重新注释该属性实现的具体实现者。为什么不正确解组(使用MOXy 2.5.0)?我得到一个正确构造的对象,但该属性从未绑定到XML:

<!-- XML -->
<InterfaceImpl id="5150" />
/**
 * Annotated interface
 */
@XmlRootElement(name="IInterface")
public interface IInterface
{
    @XmlAttribute(name="id")
    public void setId(int id);
}

/**
 * Concrete implementor
 */
@XmlRootElement(name="InterfaceImpl")
public class InterfaceImpl implements IInterface
{
    private int m_id = -1;

    @Override
    public void setId(int id)
    {
        m_id = id;
    }   
}

/**
 * Unmarshal code
 */
File f = new File("src\\resources\\Interface.xml");
JAXBContext context = JAXBContext.newInstance(MY_PATH);
Unmarshaller u = context.createUnmarshaller();
InterfaceImpl i = (InterfaceImpl)u.unmarshal(f);            

如果我将IInterface更改为抽象类,它可以正常工作 - 不应该以相同的方式处理抽象类和接口吗?这是预期的行为还是已知问题?

谢谢!

1 个答案:

答案 0 :(得分:1)

<强> oxm.xml

您可以使用EclipseLink JAXB(MOXy)的外部绑定文件使MOXy认为IInterfaceInterfaceImpl的超类,而不是Object

<?xml version="1.0"?>
<xml-bindings
    xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
    package-name="forum16878949">
    <java-types>
        <java-type name="InterfaceImpl" super-type="forum16878949.IInterface"/>
    </java-types>
</xml-bindings>

<强>演示

以下是在创建JAXBContext时如何指定映射文档。出于演示的目的,我向getId添加了InterfaceImpl方法,以便我可以展示解组工作。

package forum16878949;

import java.io.File;
import java.util.*;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextProperties;

public class Demo {

    private static String MY_PATH = "forum16878949";

    public static void main(String[] args) throws Exception {
        /**
         * Unmarshal code
         */
        Map<String, Object> properties = new HashMap<String, Object>(1);
        properties.put(JAXBContextProperties.OXM_METADATA_SOURCE, "forum16878949/oxm.xml");
        File f = new File("src/forum16878949/Interface.xml");
        JAXBContext context = JAXBContext.newInstance(MY_PATH, IInterface.class.getClassLoader(), properties);
        Unmarshaller u = context.createUnmarshaller();
        InterfaceImpl i = (InterfaceImpl)u.unmarshal(f);
        System.out.println(i.getId());
    }

}

<强> Interface.xml

<?xml version="1.0" encoding="UTF-8"?>
<InterfaceImpl id="123"/>

<强>输出

123

了解更多信息