1

我正在处理需要解组操作的应用程序。

这是我的输入文件结构:

<root>
      <sender>senderCode</sender>
      <receiver>receiverCode</receiver>
      <document-type code="05"/>
      <date>recDate</date>
<root>

并解组我创建三个 POJO 类:Root GeneralInfo 和 Doctype

我的问题是我可以

import org.eclipse.persistence.oxm.annotations.*;

但是当我:

import org.eclipse.persistence.oxm.annotations.XmlPath;

有人知道如何解决吗?

提前致谢。

4

1 回答 1

0

@XmlPath注释是在 EclipseLink 2.1 中引入的,因为您可以看到包org.eclipse.persistence.oxm.annotations,但@XmlPath您最有可能使用 EclipseLink 2.0。截至今天(2011 年 10 月 14 日),当前版本是 EclipseLink 2.3。

EclipseLink 的版本可以在这里获得:

有关更多信息@XmlPath

于 2011-10-14T16:39:46.083 回答