如何为整个应用程序只设置一次sessionFactory实例?

时间:2014-10-08 07:43:41

标签: spring spring-mvc

我使用此包org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean通过xml文件(applicationContext.xml)注入sessionFactory。

无论如何都要为整个Web应用程序设置一次sessionFactory吗?我怎么能实现这个目标呢?

 <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="packagesToScan">
         <list>
                    <value>com.mahesh</value>
            </list>
    </property>
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
                        <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
            <prop key="hibernate.dialect">${hibernate.dialect}</prop>
        </props>
    </property>
</bean>

1 个答案:

答案 0 :(得分:3)

除非你告诉Spring,否则它会在每个上下文中创建一个bean(即它们将是单例)。你的XML就是这样做的,所以它已经做了你想做的事。