免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1786 | 回复: 2
打印 上一主题 下一主题

请教一个关于Spring配置的基础的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-11-14 01:57 |只看该作者 |倒序浏览
I am sorry if my question is stupid.

I am confused about the following snippet of spring configuration file.

  1. <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">                ......
  2.         </bean>


  3.         <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  4.                 <property name="sessionFactory">
  5.                         <ref local="sessionFactory" />
  6.                 </property>
  7.         </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,
  1. LocalSessionFactoryBean extends AbstractSessionFactoryBean
复制代码
, and
  1. AbstractSessionFactoryBean
  2.                 implements FactoryBean, InitializingBean, DisposableBean, PersistenceExceptionTranslator
复制代码
. None of the above is instance of SessionFactory.

Could anybody help me, thanks in advance.

论坛徽章:
0
2 [报告]
发表于 2006-11-14 09:42 |只看该作者
看看源代码:

protected SessionFactory newSessionFactory(Configuration config) throws HibernateException {
                return config.buildSessionFactory();
        }

论坛徽章:
0
3 [报告]
发表于 2006-11-14 11:59 |只看该作者
AbstractSessionFactoryBean实现了FactoryBean接口,ref该bean得到的是factory管理的SessionFactory实例而不是factory本身。

可以去参考一下AbstractSessionFactoryBean的代码。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP