我想将XML转换为Java对象。但是我不希望在代码中硬编码XML标记和Java类之间的映射,例如使用JAXB注释或XStream.alias()方法。
我如何实现这一目标?
谢谢!
答案 0 :(得分:2)
然后你应该选择一个XML解析器并设计你自己的unmarshaller。另一方面,JAXB可以将xml解组为没有注释的Java bean,请参阅此代码,它可以正常工作
public class Test {
private String e1;
public String getE1() {
return e1;
}
public void setE1(String e1) {
this.e1 = e1;
}
public static void main(String[] args) throws Exception {
String xml = "<Test><e1>test</e1></Test>";
Test t = JAXB.unmarshal(new StringReader(xml), Test.class);
System.out.println(t.getE1());
}
}
答案 1 :(得分:1)
注意:我是EclipseLink JAXB (MOXy)主管,是JAXB (JSR-222)专家组的成员。
在JAXB的EclipseLink MOXy实现中,我们提供了一个外部映射文档,可以用作标准注释的替代方法。
<强> oxm.xml 强>
下面是一个示例映射文档。
<?xml version="1.0"?>
<xml-bindings
xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"
package-name="blog.bindingfile">
<xml-schema
namespace="http://www.example.com/customer"
element-form-default="QUALIFIED"/>
<java-types>
<java-type name="Customer">
<xml-root-element/>
<xml-type prop-order="firstName lastName address phoneNumbers"/>
<java-attributes>
<xml-element java-attribute="firstName" name="first-name"/>
<xml-element java-attribute="lastName" name="last-name"/>
<xml-element java-attribute="phoneNumbers" name="phone-number"/>
</java-attributes>
</java-type>
<java-type name="PhoneNumber">
<java-attributes>
<xml-attribute java-attribute="type"/>
<xml-value java-attribute="number"/>
</java-attributes>
</java-type>
</java-types>
</xml-bindings>
<强>演示强>
以下是引导JAXBContext
时如何指定外部映射文档的示例。
package blog.bindingfile;
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, "blog/bindingfile/binding.xml");
JAXBContext jc = JAXBContext.newInstance("blog.bindingfile", Customer.class.getClassLoader() , properties);
Unmarshaller unmarshaller = jc.createUnmarshaller();
Customer customer = (Customer) unmarshaller.unmarshal(new File("src/blog/bindingfile/input.xml"));
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(customer, System.out);
}
}
了解更多信息