如何在 NB 7 中使用 EclipseLink 2.3 作为持久性提供程序?
我下载了最新的 EclipseLink 2.3 并想尝试一下。但我找不到选择 EclipseLink 2.3 作为 NB7 中的持久性提供程序的方法。
这就是我所做的。 1. 转到我的项目的 persistence.xml。在设计视图中->持久化提供者下拉菜单 ->新的持久性库 2. 我添加了 EclipseLink 2.3 jar 文件并为其命名。 3. 点击“确定”。
什么也没发生。它仍然显示“EclipseLink(JPA 2.)(默认)作为我的持久性提供程序。并且我在下拉菜单中找不到新创建的库。(但是如果我转到“项目属性”->“库”->“添加库”,我可以看到它被创建了)
那么我如何使用 EclipseLink 2.3 作为 NB7 中的持久性提供程序?
I downloaded the latest EclipseLink 2.3 and want to give it a try. But I cannot find a way to choose EclipseLink 2.3 as a persistence provider in NB7.
Here's what I did.
1. Go to my project's persistence.xml. In Design view-> Persistence Provider drop down menu -> New Persistence Library
2. I added the EclipseLink 2.3 jar files and gave it a name.
3. Hit OK.
Nothing happened. It still shows "EclipseLink (JPA 2.)(Default) as my Persistence Provider. And I cannot find the newly created library in the drop down menu. (But if I go Project Properties->Libaries->Add Library I can see it got created).
So how do i use EclipseLink 2.3 as a persistence provider in NB7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要您的库列表包含 EclipseLink 2.3 jar 并且 persistence.xml 文件包含以下行:
org.eclipse.persistence.jpa.PersistenceProvider
您将使用 EclipseLink 2.3 版。至于netbeans中的显示,我不确定为什么它不会更新,但我不担心它。
仅供参考,我一直通过上面描述的方法在 Netbeans 中使用 EclipseLink 2.3.0,并且运行良好。
As long as your Libraries list contains your EclipseLink 2.3 jar and that the persistence.xml file contains the following line:
org.eclipse.persistence.jpa.PersistenceProvider
You will be using version 2.3 of EclipseLink. As for the display in netbeans, I'm not sure why it wouldn't update but I wouldn't worry about it.
FYI, I've been using EclipseLink 2.3.0 in Netbeans via the method I've described above and it works fine.