我有一个XML需要映射到Java对象,即DTO。我的XML有一些包装元素,在我的DTO中没有任何java对象..我的XML看起来像这样
<UseCaseView>
<FindCandidates>
<CandidatesRequest>
<APIRequest>
<Code>Code</Code>
</APIRequest>
</CandidatesRequest>
</FindCandidates> </UseCaseView>
“FindCandidates”和“CandidatesRequest”只是包装元素而“APIRequest”又是DTO ..
我在我的DTO中使用这样的XMLPath ..我的Dto看起来像这样..
@XmlRootElement(name = "UseCaseView")
public class FindRequestDTO implements Serializable{
private static final long serialVersionUID = 5528726225975606325L;
private ApiRequestDTO apiRequest;
@XmlPath("FindCandidates/CandidatesRequest/APIRequest")
public ApiRequestDTO getAPIRequest() {
return apiRequest;
.........
这不是将APIRequest元素映射到我的ApiRequestDTO,如果我删除了两个包装元素和 直接使用XMLElement(name =“APIRequest”)映射它可以...但我需要忽略两个包装元素并构造我的DTO .. 我已经使用
添加了Jaxb.properties文件"javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory"
在我的资源文件夹中。
有人可以帮助我知道这里出了什么问题..
感谢,
答案 0 :(得分:2)
注意:我是EclipseLink JAXB (MOXy)主管,是JAXB 2 (JSR-222)专家组的成员。
以下是一个应该有用的完整示例。
<强> jaxb.properties 强>
要将MOXy指定为JAXB提供程序,您需要添加一个名为jaxb.properties
的文件,并在与您的域模型相同的包中添加以下条目。
javax.xml.bind.context.factory = org.eclipse.persistence.jaxb.JAXBContextFactory
<强> FindRequestDTO 强>
package forum9881188;
import java.io.*;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.*;
@XmlRootElement(name = "UseCaseView")
public class FindRequestDTO implements Serializable {
private static final long serialVersionUID = 5528726225975606325L;
private ApiRequestDTO apiRequest;
@XmlPath("FindCandidates/CandidatesRequest/APIRequest")
public ApiRequestDTO getAPIRequest() {
return apiRequest;
}
public void setAPIRequest(ApiRequestDTO apiRequest) {
this.apiRequest = apiRequest;
}
}
<强> ApiRequestDTO 强>
package forum9881188;
public class ApiRequestDTO {
}
<强>演示强>
package forum9881188;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(FindRequestDTO.class);
FindRequestDTO fr = new FindRequestDTO();
fr.setAPIRequest(new ApiRequestDTO());
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(fr, System.out);
}
}
<强>输出强>
<?xml version="1.0" encoding="UTF-8"?>
<UseCaseView>
<FindCandidates>
<CandidatesRequest>
<APIRequest/>
</CandidatesRequest>
</FindCandidates>
</UseCaseView>
了解更多信息
<强>更新强>
如果由于某种原因你无法获得JAXBContext
的MOXy实现,你总是可以使用本机API来引导。使用本机API时,您不需要jaxb.properties
文件:
package forum9881188;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextFactory;
public class Demo {
public static void main(String[] args) throws Exception {
//JAXBContext jc = JAXBContext.newInstance(FindRequestDTO.class);
JAXBContext jc = JAXBContextFactory.createContext(new Class[] {FindRequestDTO.class}, null);
FindRequestDTO fr = new FindRequestDTO();
fr.setAPIRequest(new ApiRequestDTO());
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(fr, System.out);
}
}