无法导入 JABX XmlPath 类

发布于 2024-12-09 03:58:22 字数 565 浏览 0 评论 0原文

我正在开发需要解组操作的应用程序。

这是我的输入文件结构:

<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;

但当我:有人知道如何修复它

?提前致谢。

i'm working on application requiring unmarshalling action.

here's my input file structure :

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

and to unmarshal i create three POJO classes : Root GeneralInfo and Doctype

My problem is that i can

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

but i get "import ... cannot be resolved" when i :

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

anyone have an idea how to fix it ?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放手` 2024-12-16 03:58:22

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

可以在此处获取 EclipseLink 的版本:

有关 @XmlPath 的详细信息

The @XmlPath annotation was introduced in EclipseLink 2.1, since you ca see the org.eclipse.persistence.oxm.annotations package but not @XmlPath you are most likely using EclipseLink 2.0. As of today (October 14, 2011) the current release is EclipseLink 2.3.

Releases of EclipseLink can be obtained here:

For more information on @XmlPath

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文