1

我有一个需要映射到Java 对象(即DTO)的XML。我的 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"

在我的资源文件夹中。

有人可以帮我知道这里出了什么问题..

谢谢,

4

1 回答 1

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>

了解更多信息


更新

如果由于某种原因您无法获得 MOXy 的实现JAXBContext,您始终可以使用本机 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);
    }

}
于 2012-03-27T18:55:05.483 回答