我正在使用hibernate&我在编译期间遇到了这个错误:
package org.hibernate.cfg does not exist
import org.hibernate.cfg.Configuration;
答案 0 :(得分:0)
您是否在构建路径中添加了hibernate jar。因为编译器无法找到具有此包的jar。所以添加它并尝试。 你在使用任何IDE吗?
答案 1 :(得分:0)
您的类路径中似乎没有hibernate.jar。
答案 2 :(得分:0)
将以下依赖项添加到您的 pom.xml 文件中,保存,Maven 将完成剩下的工作:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.5.3.Final</version>
</dependency>