SSH中的Dao类继承HibernateDaoSupport后出现异常
Posted 玄门主宰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSH中的Dao类继承HibernateDaoSupport后出现异常相关的知识,希望对你有一定的参考价值。
异常:‘sessionFactory‘ or ‘hibernateTemplate‘ is required
原因:未注入hibernateTemplate,需要在spring的配置文件中明确指定bean以byName的方式匹配
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
"
default-autowire="byName" >
以上是关于SSH中的Dao类继承HibernateDaoSupport后出现异常的主要内容,如果未能解决你的问题,请参考以下文章
在ssh框架中的dao类中如何获取hibernate中的session