使用proxool連線池 ,連線沒有關閉的原因
遇到的問題:
使用如下方法查詢,連線不能正常關閉:
方式1: SQLQuery query=getSession().createSQLQuery(sql.toString());
如果事務配置正確的話,方式1可以.
方式2: Session session = this.getHibernateTemplate().getSessionFactory().openSession();
List<Object[]> cList= session.createSQLQuery(sql).list();
該方式不受spring事務管理,需要修改為如下方式:
Session session = this.getSession();
Query query = session.createSQLQuery(sql);
List<Object[]> cList= query.list();
這樣修改後,如果事務配置正確,則session能正常關閉.
如果事務配置不正確, 為了以防萬一,可以在程式碼中新增如下程式碼,關閉session: releaseSession(session);// 這是spring自己提供的方法
正確的事務配置如下:
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation" value="classpath:hibernate.cfg.xml">
</property>
</bean>
<!-- 配置事務管理器 -->
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory" />
</property>
</bean>
<!-- 哪些類哪些方法使用事務 -->
<aop:config>
<aop:pointcut id="allServiceMethod"
expression="execution(* com.bbc.*.*.service.impl.*.*(..))" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="allServiceMethod" />
</aop:config>
<!-- 事務的傳播特性 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="save*" propagation="REQUIRED" />
<tx:method name="*" propagation="REQUIRED" />
</tx:attributes>
</tx:advice>
當時由於事務配置中的包路徑寫錯了,導致session關閉沒有通過spring事務控制,造成session一直未關閉. 結果強制使用 releaseSession(session); 也到實現了session關閉.其實當事務配置正確後,就不需要 releaseSession(session); 了.