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

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>
转载、自用、侵删

猜你喜欢

转载自blog.csdn.net/hytxwz/article/details/80457283