(转)ssh框架注解方式持久层无法注入sessionFactory解决方法

本文介绍在使用Spring+Struts2+Hibernate框架整合时,持久层采用HibernateDaoSupper并使用注解方法可能导致的sessionFactory未注入问题及解决办法。主要通过调整Spring配置文件的头部声明,加入default-autowire=byName来实现自动装配,解决持久层的依赖注入问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

spring+struts2+hibernate 框架整合时,持久层继承了HibernateDaoSupper时,用注解方法可能会在持久层报sessionFactory或HibernateTemple为必须的,表明没有注入sessionFactory。

主要原因是spring的头声明需要在最后添加default-autowrite=“byName”

完整头声明如下:

<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans.xsd 
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx.xsd 
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context.xsd 
    http://www.springframework.org/schema/aop 
    http://www.springframework.org/schema/aop/spring-aop.xsd "
    default-autowire="byName">
</beans>
转载、自用、侵删
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值