blogjava-凯发k8网页登录

blogjava-凯发k8网页登录http://www.blogjava.net/alpha/category/6824.html多少春秋风雨改 多少崎岖不变爱zh-cntue, 26 dec 2017 00:27:10 gmttue, 26 dec 2017 00:27:10 gmt60c3p0详细配置http://www.blogjava.net/alpha/archive/2009/03/29/262789.htmlalphaalphasun, 29 mar 2009 15:31:00 gmthttp://www.blogjava.net/alpha/archive/2009/03/29/262789.htmlhttp://www.blogjava.net/alpha/comments/262789.htmlhttp://www.blogjava.net/alpha/archive/2009/03/29/262789.html#feedback26http://www.blogjava.net/alpha/comments/commentrss/262789.htmlhttp://www.blogjava.net/alpha/services/trackbacks/262789.html阿里云服务器优惠券
官方文档 :



3


30


1000


false


test


false


100





null


false


60


3


60


15


100





3


root


password





select id from test where id=1


300


false


true


root


false

con_test
30000
30
10
30
25
10
0




200

300





转:
解决mysql 8小时问题

最近的一个项目在hibernate使用c3p0的连接池,数据库为mysql。开发测试没有问题,在运行中每个一段长的空闲时间就出现异常:

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. ** begin nested exception **
  7. com.mysql.jdbc.communicationsexception
  8. message: communications link failure due to underlying exception:
  9. ** begin nested exception **
  10. java.net.socketexception
  11. message: broken pipe
  12. stacktrace:
  13. java.net.socketexception: broken pipe
  14. at java.net.socketoutputstream.socketwrite0(native method)
  15. ......
  16. ** end nested exception **

查看了mysql的文档,以及connector/j的文档以及在线说明发现,出现这种异常的原因是:

mysql服务器默认的“wait_timeout”是8小时,也就是说一个connection空闲超过8个小时,mysql将自动断开该 connection。这就是问题的所在,在c3p0 pools中的connections如果空闲超过8小时,mysql将其断开,而c3p0并不知道该connection已经失效,如果这时有 client请求connection,c3p0将该失效的connection提供给client,将会造成上面的异常。

解决的方法有3种:

  1. 增加wait_timeout的时间。
  2. 减少connection pools中connection的lifetime。
  3. 测试connection pools中connection的有效性。

当然最好的办法是同时综合使用上述3种方法,下面就dbcp和c3p0分别做一说明,假设wait_timeout为默认的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. //获取connnection时测试是否有效
  2. testconnectiononcheckin = true
  3. //自动测试的table名称
  4. automatictesttable=c3p0testtable
  5. //set to something much less than wait_timeout, prevents connections from going stale
  6. idleconnectiontestperiod = 18000
  7. //set to something slightly less than wait_timeout, preventing 'stale' connections from being handed out
  8. maxidletime = 25000
  9. //if you can take the performance 'hit', set to "true"
  10. testconnectiononcheckout = true

更多的配置信息大家可以查看c3p0文档,connector/j文档,以及dbcp的文档。

转:

我自己的配置:

jdbc.driverclass=com.mysql.jdbc.driver
jdbc.jdbcurl = jdbc:mysql://localhost:3306/test
jdbc.user = root
jdbc.password = 12345
jdbc.minipoolsize = 1
jdbc.maxpoolsize = 20
jdbc.initialpoolsize = 1
jdbc.maxidletime = 25000
jdbc.acquireincrement = 1

jdbc.acquireretryattempts = 30
jdbc.acquireretrydelay = 1000
jdbc.testconnectiononcheckin = true
jdbc.automatictesttable = c3p0testtable
jdbc.idleconnectiontestperiod = 18000
jdbc.checkouttimeout=3000


  
  
  
  
  
     
  
  
  
  
  
  
  
  
  
  



alpha 2009-03-29 23:31 发表评论
]]>
hibernate 不同数据库的连接及sql方言http://www.blogjava.net/alpha/archive/2008/04/15/193094.htmlalphaalphatue, 15 apr 2008 06:06:00 gmthttp://www.blogjava.net/alpha/archive/2008/04/15/193094.htmlhttp://www.blogjava.net/alpha/comments/193094.htmlhttp://www.blogjava.net/alpha/archive/2008/04/15/193094.html#feedback0http://www.blogjava.net/alpha/comments/commentrss/193094.htmlhttp://www.blogjava.net/alpha/services/trackbacks/193094.html阿里云服务器优惠券


  org.hibernate.dialect.mysqldialect
  com.mysql.jdbc.driver

  
  jdbc:mysql://localhost/dbname?characterencoding=gb2312

  
  root

  
  root
  
  
  
  org.hibernate.dialect.sqlserverdialect
  net.sourceforge.jtds.jdbc.driver

  
  jdbc:jtds:sqlserver://localhost:1433;databasename=dbname

  
  sa

  
  

  
  
  
  org.hibernate.dialect.oracledialect
  oracle.jdbc.driver.oracledriver

  
  jdbc:oracle:thin:@localhost:1521:dbname

  
  test

  
  test



如果出现如下错误,则可能是hibernate sql方言 (hibernate.dialect)设置不正确。
caused by: java.sql.sqlexception: [microsoft][sqlserver 2000 driver for jdbc][sqlserver]'last_insert_id' 不是可以识别的 函数名。
rdbms 方言
db2 org.hibernate.dialect.db2dialect
db2 as/400 org.hibernate.dialect.db2400dialect
db2 os390 org.hibernate.dialect.db2390dialect
postgresql org.hibernate.dialect.postgresqldialect
mysql org.hibernate.dialect.mysqldialect
mysql with innodb org.hibernate.dialect.mysqlinnodbdialect
mysql with myisam org.hibernate.dialect.mysqlmyisamdialect
oracle (any version) org.hibernate.dialect.oracledialect
oracle 9i/10g org.hibernate.dialect.oracle9dialect
sybase org.hibernate.dialect.sybasedialect
sybase anywhere org.hibernate.dialect.sybaseanywheredialect
microsoft sql server org.hibernate.dialect.sqlserverdialect
sap db org.hibernate.dialect.sapdbdialect
informix org.hibernate.dialect.informixdialect
hypersonicsql org.hibernate.dialect.hsqldialect
ingres org.hibernate.dialect.ingresdialect
progress org.hibernate.dialect.progressdialect
mckoi sql org.hibernate.dialect.mckoidialect
interbase org.hibernate.dialect.interbasedialect
pointbase org.hibernate.dialect.pointbasedialect
frontbase org.hibernate.dialect.frontbasedialect
firebird org.hibernate.dialect.firebirddialect




alpha 2008-04-15 14:06 发表评论
]]>
网站地图