我目前在项目上使用moxy,我遇到了一个无法找到解决方案的问题。
我只使用xml映射文件将从客户端收到的xml映射到我的java类。
我的问题是元素名称是“电子邮件”,就像这样:
example@gmail.com
在收到的xml中,它是一个列表,所以我首先尝试这样映射:
xml-element java-attribute =“eMail”type =“java.lang.String”xml-path =“E-Mail / text()”container-type =“java.util.List”
此表达式使用相同类型的对象,但在元素名称中没有破折号。
但在这种情况下它不起作用。 (xml-path表达式不起作用)。
我尝试了很多不同的表达方式,但我找不到任何解决方案......
你能帮助我吗?有人已经解决了这类问题吗?答案 0 :(得分:0)
我不确定我是否完全理解您的问题,但我相信当元素名称中出现短划线时您遇到了问题。以下是一个可能有用的示例。
<强> bindings.xml 强>
下面是EclipseLink JAXB(MOXy)的XML绑定文件的示例。映射到xml-path
属性的email
包含短划线E-Mail/text()
。
<?xml version="1.0"?>
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
package-name="forum10435322">
<java-types>
<java-type name="Root">
<xml-root-element/>
<java-attributes>
<xml-element java-attribute="email" xml-path="E-Mail/text()"/>
</java-attributes>
</java-type>
</java-types>
</xml-bindings>
<强>根强>
以下是我将用于此示例的域对象。它不包含任何注释。
package forum10435322;
import java.util.List;
public class Root {
private List<String> email;
public List<String> getEmail() {
return email;
}
public void setEmail(List<String> email) {
this.email = email;
}
}
<强> jaxb.properties 强>
为了将MOXy指定为JAXB提供程序,您需要在与域类相同的包中添加名为jaxb.properties
的文件,并使用以下条目:
javax.xml.bind.context.factory = org.eclipse.persistence.jaxb.JAXBContextFactory
<强>演示强>
下面是一些演示代码,演示了如何使用MOXy的外部元数据来引导JAXBContext
。
package forum10435322;
import java.io.File;
import java.util.*;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
public class Demo {
public static void main(String[] args) throws Exception {
Map<String, Object> properties = new HashMap<String, Object>(1);
properties.put(JAXBContextFactory.ECLIPSELINK_OXM_XML_KEY, "forum10435322/bindings.xml");
JAXBContext jc = JAXBContext.newInstance(new Class[] {Root.class}, properties);
File xml = new File("src/forum10435322/input.xml");
Unmarshaller unmarshaller = jc.createUnmarshaller();
Root root = (Root) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(root, System.out);
}
}
<强> input.xml中/输出强>
以下是此示例的输入和输出。
<?xml version="1.0" encoding="UTF-8"?>
<root>
<E-Mail>jane.doe@example.com</E-Mail>
<E-Mail>jdoe@example.org</E-Mail>
</root>