1

嗨,我在为我的 JPA 使用 datanucleus 时遇到问题

我使用 netbeans 作为我的 IDE,我已经导入了 datanucleus 增强器 jar,但是每次我运行文件时,它都说我应该增强我的课程。

我已经在网上搜索了,但我仍然不确定该怎么做,有没有人能对如何提高我在 netbeans 中的课程有所了解?

谢谢XD

4

3 回答 3

1

创建一个 -post-compile 任务,该任务将调用 datanucleusenhancer 任务。

http://jkook.blogspot.com/2011/07/netbeans7-integration-with-datanucleus.html

于 2011-07-29T10:00:42.247 回答
0

Netbeans 不是只使用 Ant 的正常方式吗?所以添加 build.xml 和一个后编译步骤来增强你的模型类。请参阅 http://www.datanucleus.org/products/accessplatform_1_0/guides/netbeans/index.html 获取旧指南(Netbeans 4.x,DataNucleus 前身 JPOX)

于 2010-11-12T19:15:00.247 回答
0

使用向导创建一个新的 Maven2 项目并更改您的 pom.xml,如在

http://www.datanucleus.org/products/accessplatform/guides/maven2/index.html

您只需要一个存储库。

    <repository>
        <id>DataNucleus_Repos2</id>
        <name>DataNucleus Repository</name>
        <url>http://www.datanucleus.org/downloads/maven2/</url>
    </repository>
于 2011-04-02T01:22:52.263 回答