Spring整合hibernate时,出现下边的错误,哪位高手能帮我看出个一二...
Causedby:org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwit...
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [beans.xml]: Invocation of init method failed; nested exception is java.lang.IncompatibleClassChangeError: class org.hibernate.cfg.ExtendedMappings has interface org.hibernate.cfg.Mappings as super class
将SessionFactory交给Spring容器管理在配置文件中代码为:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="annotatedClasses">
<list>
<value>cn.henu.ntd.model.User</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean> 展开
将SessionFactory交给Spring容器管理在配置文件中代码为:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="annotatedClasses">
<list>
<value>cn.henu.ntd.model.User</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean> 展开
4个回答
展开全部
java.lang.IncompatibleClassChangeError: class org.hibernate.cfg.ExtendedMappings has interface org.hibernate.cfg.Mappings as super class
不可兼容的类型改变错:类型org.hibernate.cfg.ExtendedMappings将接口org.hibernate.cfg.Mappings作为超类。
从此看来是Spring的版本与Hibernate 3的版本不匹配造成的。请注意所使用Spring的版本所支持Hibernate的版本范围
不可兼容的类型改变错:类型org.hibernate.cfg.ExtendedMappings将接口org.hibernate.cfg.Mappings作为超类。
从此看来是Spring的版本与Hibernate 3的版本不匹配造成的。请注意所使用Spring的版本所支持Hibernate的版本范围
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SessionFactory创建的bean定义在类路径资源[beans.xml文件。初始化失败,你用了嵌套异常?
追问
没有用那个嵌套异常,我整了好长时间还是不知道为什么会初始化异常.. java.lang.IncompatibleClassChangeError: class org.hibernate.cfg.ExtendedMappings has interface org.hibernate.cfg.Mappings as super class这句话不太明白是什么意思,你知道不?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是不是用的hibernate3.5以上的版本? Hibernate3.5集成了annotions,所以要删除hibernate-annotations.jar,hibernate-commons-annotations.jar,hibernate-entitymanager.jar
追问
我用的是3.4版本的... java.lang.IncompatibleClassChangeError: class org.hibernate.cfg.ExtendedMappings has interface org.hibernate.cfg.Mappings as super class这句话不太明白是什么意思。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该是配置文件错了吧
追问
应该没什么错吧...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询