Spring管理Hibernate开发 net/sf/hibernate/Session

来源:互联网 发布:淘宝联盟4.3.2安装包 编辑:程序博客网 时间:2024/06/04 23:22

转自:http://www.ziki.cn/blog/archives/1155299857.html

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'baseDao' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: net/sf/hibernate/Session java.lang.NoClassDefFoundError: net/sf/hibernate/Session

错误原因:

Hibernate3使用Spring Hibernate2 HibernateDaoSupport 的版本 继承错误了

import org.springframework.orm.hibernate.support.HibernateDaoSupport;

该为

import org.springframework.orm.hibernate3.support.HibernateDaoSupport;

原创粉丝点击