java.lang.NoClassDefFoundError:org / hibernate / criterion / Criterion | Spring Hibernate

时间:2014-09-28 15:58:44

标签: hibernate spring-mvc

我在pom.xml中配置了“ hibernate-core-4.3.6.Final.jar ”,如下所示。

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>4.3.6.Final</version>
            <scope>system</scope>
            <systemPath>G:/Setups/hibernate-release-4.3.6.Final/hibernate-release-4.3.6.Final/lib/required/hibernate-core-4.3.6.Final.jar</systemPath>
        </dependency>

当我尝试在服务层注入hibernate DAO类时,我遇到了这个异常。

1 个答案:

答案 0 :(得分:2)

删除范围和systemPath部分并再次构建项目。依赖关系将由maven处理。