gpt4 book ai didi

java - 无法使用 Jaxb 和 XMLPath 解码 XML

转载 作者:行者123 更新时间:2023-11-30 04:50:45 29 4
gpt4 key购买 nike

我有一个 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"

在我的资源文件夹中。

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

谢谢

最佳答案

注意:我是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 实现,您始终可以使用 native API 进行引导。使用 native 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);
}

}

关于java - 无法使用 Jaxb 和 XMLPath 解码 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9881188/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com