包org.hibernate.cfg不存在import org.hibernate.cfg.Configuration;

时间:2010-07-13 07:15:16

标签: java classpath compiler-errors

我正在使用hibernate&我在编译期间遇到了这个错误:

package org.hibernate.cfg does not exist
   import org.hibernate.cfg.Configuration;

3 个答案:

答案 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>