- 论坛徽章:
- 0
|
I am sorry if my question is stupid.
I am confused about the following snippet of spring configuration file.
- <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> ......
- </bean>
- <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <property name="sessionFactory">
- <ref local="sessionFactory" />
- </property>
- </bean>
复制代码
Now, as much as I know, HibernateTransactionManager should has a setSessionFactory(SessionFactory) method itself or inherited, and it's true it does have it. And I suppose at the startup time, spring should inject an instance of LocalSessionFactoryBean in to the setSessionFactory method as the parameter. What confused me is that why LocalSessionFactoryBean is not of the type SessionFactory, I don't think an instance of not SessionFactory can be passed in the method. I looked up the source code of spring,- LocalSessionFactoryBean extends AbstractSessionFactoryBean
复制代码 , and- AbstractSessionFactoryBean
- implements FactoryBean, InitializingBean, DisposableBean, PersistenceExceptionTranslator
复制代码 . None of the above is instance of SessionFactory.
Could anybody help me, thanks in advance. |
|