要清除一些混乱。我有applicationContext.xml。
问题1: 1和2有什么区别?不同的方法都相同吗?
问题2:
我在Spring论坛上问了一些问题。他提到的有关合并的内容如下
如果您需要/想要使用内部连接池进行hibernate,我会建议您这样做,只需配置一个支持连接池的数据源并将其注入到sessionfactorybean中即可。
hibernate的内部连接池= 这是 下面的2 。对?
只需配置一个支持连接池的数据源,然后将其注入到sessionfactorybean = 这是 下面的数字1 。对?
1#-
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="${jdbc.driverClassName}"/> <property name="url" value="${jdbc.url}"/> <property name="username" value="${jdbc.username}"/> <property name="password" value="${jdbc.password}"/> <property name="maxActive" value="100"/> <property name="maxIdle" value="30"/> <property name="maxWait" value="16000"/> <property name="minIdle" value="0"/> </bean> <!-- Hibernate SessionFactory --> <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="annotatedClasses"> <list> <value>com.mkyong.customer.model.Customer</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop> <prop key="hibernate.show_sql">true</prop> <prop key="hibernate.format_sql">false</prop> <prop key="hibernate.generate_statistics">true</prop> </props> </property> </bean>
2#-
池和连接信息在hibernate.cfg.xml中
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> <property name="configLocation" value="classpath:hibernate.cfg.xml" /> </bean>
答1:
两种方法是相同的。默认情况下,hibernate从中读取配置classpath:hibernate.cfg.xml以进行构建SessionFactory。LocalSessionFactoryBean只允许你设置hibernate配置里面applicationContext.xml,而不是hibernate.cfg.xml。
classpath:hibernate.cfg.xml
SessionFactory
LocalSessionFactoryBean
applicationContext.xml
hibernate.cfg.xml
如果在两个文件中都指定了相同的属性,则取决于该属性,它将具有上瘾的效果,或者中指定的属性 applicationContext.xml将具有更高的优先级,因此hibernate.cfg.xml将忽略其中的那些值 。
对于方法1,annotatedClasses并且hibernateProperties应该与在相应的值的成瘾效果hibernate.cfg.xml。DBCP dataSouruce中的applicationContext.xml应引起相关属性hibernate.cfg.xml被忽略。
annotatedClasses
hibernateProperties
答案2:
对于方法2,如果未指定的任何属性LocalSessionFactoryBean,则所有的hibernate配置均由指定hibernate.cfg.xml。如果在没有配置连接池hibernate.cfg.xml,Hibernate的连接池算法默认情况下使用,这是相当简陋,不打算用于生产系统,甚至性能测试。