真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Hibernate如何使用C3P0的連接池

這篇文章主要介紹“Hibernate如何使用C3P0的連接池”,在日常操作中,相信很多人在Hibernate如何使用C3P0的連接池問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Hibernate如何使用C3P0的連接池”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

為當(dāng)雄等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及當(dāng)雄網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站建設(shè)、做網(wǎng)站、當(dāng)雄網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

最近的一個項(xiàng)目在Hibernate使用C3P0的連接池,數(shù)據(jù)庫為MySQL。開發(fā)測試沒有問題,在運(yùn)行中每個一段長的空閑時間就出現(xiàn)異常:[@more@]最近的一個項(xiàng)目在Hibernate使用C3P0的連接池,數(shù)據(jù)庫為Mysql。開發(fā)測試沒有問題,在運(yùn)行中每個一段長的空閑時間就出現(xiàn)異常:

java 代碼

  1. org.hibernate.exception.JDBCConnectionException: could not execute query  

  2.    at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:74)  

  3.    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)  

  4.    .......  

  5. Caused by: com.mysql.jdbc.exceptions.MySQLNonTransientConnectionException: No operations allowed after connection closed.Connection was implicitly closed due to underlying exception/error:  

  6.  

  7.  

  8. ** BEGIN NESTED EXCEPTION **    

  9.  

  10. com.mysql.jdbc.CommunicationsException  

  11. MESSAGE: Communications link failure due to underlying exception:    

  12.  

  13. ** BEGIN NESTED EXCEPTION **    

  14.  

  15. java.net.SocketException  

  16. MESSAGE: Broken pipe  

  17.  

  18. STACKTRACE:  

  19.  

  20. java.net.SocketException: Broken pipe  

  21.    at java.net.SocketOutputStream.socketWrite0(Native Method)  

  22.    ......  

  23. ** END NESTED EXCEPTION **  

查看了Mysql的文檔,以及Connector/J的文檔以及在線說明發(fā)現(xiàn),出現(xiàn)這種異常的原因是:

Mysql服務(wù)器默認(rèn)的“wait_timeout”是8小時,也就是說一個connection空閑超過8個小時,Mysql將自動斷開該connection。這就是問題的所在,在C3P0 pools中的connections如果空閑超過8小時,Mysql將其斷開,而C3P0并不知道該connection已經(jīng)失效,如果這時有Client請求connection,C3P0將該失效的Connection提供給Client,將會造成上面的異常。

解決的方法有3種:

  1. 增加wait_timeout的時間。

  2. 減少Connection pools中connection的lifetime。

  3. 測試Connection pools中connection的有效性。

當(dāng)然最好的辦法是同時綜合使用上述3種方法,下面就DBCP和C3P0分別做一說明,假設(shè)wait_timeout為默認(rèn)的8小時

DBCP增加以下配置信息:

  1. //set to 'SELECT 1'  

  2. validationQuery = "SELECT 1"  

  3. //set to 'true'  

  4. testWhileIdle = "true"    

  5. //some positive integer  

  6. timeBetweenEvictionRunsMillis = 3600000  

  7. //set to something smaller than 'wait_timeout'  

  8. minEvictableIdleTimeMillis = 18000000  

  9. //if you don't mind a hit for every getConnection(), set to "true"  

  10. testOnBorrow = "true"  

C3P0增加以下配置信息:

  1. //set to 'SELECT 1'      

  2. preferredTestQuery = 'SELECT 1'    

  3. //set to something much less than wait_timeout, prevents connections from going stale  

  4. idleConnectionTestPeriod = 18000    

  5. //set to something slightly less than wait_timeout, preventing 'stale' connections from being handed out  

  6. maxIdleTime = 25000    

  7. //if you can take the performance 'hit', set to "true"  

  8. testConnectionOnCheckout = true    

更多的配置信息大家可以查看C3P0文檔,Connector/J文檔,以及DBCP的文檔。

到此,關(guān)于“Hibernate如何使用C3P0的連接池”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!


分享標(biāo)題:Hibernate如何使用C3P0的連接池
本文網(wǎng)址:http://weahome.cn/article/ieioip.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部