增强 netbean、DataNucleus 中的类

发布于 2024-10-02 07:45:21 字数 196 浏览 5 评论 0原文

您好,我在 JPA 中使用 datanucleus 时遇到问题

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

我已经在网上搜索过,但我仍然不确定如何做到这一点,有哪位好心人能告诉我如何提高我的 Netbeans 课程吗?

谢谢XD

Hi i have a problem with using datanucleus for my JPA

i'm using netbeans as my IDE, i've imported the datanucleus enhancer jar, but everytime I ran the file, it says that i should enhance my class.

I've search the net and i'm still not sure on how to do it, anyone kind enough to shed some light on how to enhance my class in netbeans?

thanks XD

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

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

发布评论

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

评论(3

属性 2024-10-09 07:45:21

创建一个将调用 datanucleusenhancer 任务的编译后任务。

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

create a -post-compile task which will call datanucleusenhancer task.

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

孤檠 2024-10-09 07:45:21

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

isn't the normal way with Netbeans to just use Ant ? so add build.xml and a step post-compile to enhance your model classes. See
http://www.datanucleus.org/products/accessplatform_1_0/guides/netbeans/index.html
for an old guide (Netbeans 4.x, with DataNucleus predecessor JPOX)

安静 2024-10-09 07:45:21

创建一个新的 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>

Create a new Maven2 project, using the wizard and change your pom.xml like explained at

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

You only need one repository.

    <repository>
        <id>DataNucleus_Repos2</id>
        <name>DataNucleus Repository</name>
        <url>http://www.datanucleus.org/downloads/maven2/</url>
    </repository>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文