是否有适用于 netbeans 11.0 版的休眠插件?

Is there a hibernate plugin for netbeans version 11.0?

我使用 netbeans 版本 11.0,但我找不到它的休眠插件,如何将休眠添加到我的项目或我的 ide?

您有两种方法,第一种是使用 Maven 创建项目并将 Maven 存储库添加到 pom.xml 像这样:

<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>5.4.12.Final</version>
</dependency>

打开netbeans 11去工具->插件 转到设置 - >点击插件门户 转到可用插件点击检查最新 寻找休眠并完成

将休眠添加到项目中

先从官网下载hibernate framework,然后解压 在那个提取的文件夹之后,里面会有一个 dist 文件夹,里面会有三个 jar 文件,将这些文件添加到您的项目库中。 然后在那个解压出来的文件夹里,lib文件夹里面会有required文件夹,里面有四个jar文件,把那个jar文件添加到你项目的libraries文件夹中。

现在设置已准备就绪