无法导入 JABX XmlPath 类
我正在开发需要解组操作的应用程序。
这是我的输入文件结构:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@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 theorg.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