精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2007-06-06
配置: winxp+tomcat5.0.28+hibernate3.1+spring1.2.6+struts1.0+mysql5.0.17,做了一个小blog。没有配置连接池时,运转良好。用c3p0配置后,每次都会出现3或者5个新连接。然后发现数据库连接不能释放。出现很多sleep连接。直到全部连接占满。 出现:错误表现: javax.servlet.ServletException: Hibernate operation: Cannot open connection; uncategorized SQLException for SQL [???]; SQL state [null]; error code [0]; Connections could not be acquired from the underlying database!; nested exception is java.sql.SQLException: Connections could not be acquired from the underlying database 数据库的表现是: 类似的问题,但没有都没有很好的解决方法。 引用 06-21-2006 spring论坛一问题。
下面是applicationContext.xml的配置:
http://forum.springframework.org/showthread.php?t=26124 JavaEye 求助,Spring+Hibernate连接池无法释放问题,贴出详细代码 http://www.iteye.com/topic/32378 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> <!-- for properties files --> <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:c3p0.properties</value> </list> </property> </bean> <!-- for dataSource --> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" value="${jdbc.driver}" /> <property name="jdbcUrl" value="${jdbc.url}" /> <property name="properties"> <props> <prop key="c3p0.minPoolSize">${hibernate.c3p0.minPoolSize}</prop> <prop key="hc3p0.maxPoolSize">${hibernate.c3p0.maxPoolSize}</prop> <prop key="hc3p0.timeout">${hibernate.c3p0.timeout}</prop> <prop key="c3p0.max_statement">${hibernate.c3p0.max_statement}</prop> <prop key="user">${jdbc.username}</prop> <prop key="password">${jdbc.password}</prop> <prop key="c3p0.testConnectionOnCheckout">true</prop> </props> </property> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource" /> </property> <property name="mappingResources"> <list> <value>com/voff/hibernate/Blog.hbm.xml</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect </prop> <prop key="hibernate.show_sql"> true </prop> <prop key="hibernate.connection.provider_class"> org.hibernate.connection.C3P0ConnectionProvider </prop> </props> </property> </bean> <!-- transactionManager --> <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory"> <ref bean="sessionFactory"/> </property> </bean> <bean id="BlogDao" class="com.voff.dao.BlogDaoimpl"> <property name="sessionFactory"> <ref bean="sessionFactory"/> </property> </bean> <!-- spring dao proxy --> <bean id="BlogDaoProxy" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"> <property name="transactionManager"> <ref bean="transactionManager"/> </property> <property name="proxyInterfaces"> <list> <value>com.voff.dao.BlogDao</value> </list> </property> <property name="target"> <ref bean="BlogDao"/> </property> <property name="transactionAttributes"> <props> <prop key="insert">PROPAGATION_REQUIRED</prop> <prop key="save*">PROPAGATION_REQUIRED</prop> <prop key="update*">PROPAGATION_REQUIRED</prop> <prop key="find*">PROPAGATION_REQUIRED</prop> <prop key="*">PROPAGATION_REQUIRED,readOnly</prop> </props> </property> </bean> </beans> c3p0.properties的配置是: jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost/spring?useUnicode=true&characterEncoding=UTF-8 jdbc.username=root jdbc.password= hibernate.c3p0.minPoolSize=5 hibernate.c3p0.maxPoolSize=20 hibernate.c3p0.timeout=100 hibernate.c3p0.max_statement=50 BlogDaoimpl的代码是: package com.voff.dao; import java.util.ArrayList; import java.util.List; import org.hibernate.Query; import org.hibernate.Session; import org.springframework.orm.hibernate3.support.HibernateDaoSupport; import com.voff.hibernate.Blog; public class BlogDaoimpl extends HibernateDaoSupport implements BlogDao{ public void addblog(Blog blog) { getHibernateTemplate().save(blog); } public void delblog(int id) { Object blog=getHibernateTemplate().load(Blog.class,id); getHibernateTemplate().delete(blog); } public void updateblog(Blog blog) { getHibernateTemplate().update(blog); } public Blog getblog(int id){ return (Blog) getHibernateTemplate().get(Blog.class,id); } public int Totallimitblog(int caid,String bauthor){ String sql = "from Blog where cateid='"+caid+"' and bauthor ='"+bauthor+"'"; List total = getHibernateTemplate().find(sql); return total.size(); } public ArrayList showblog(int firstRow,int maxRow,int caid,String bauthor){ List list=new ArrayList(); Session session = getHibernateTemplate().getSessionFactory().openSession(); Query query =session.createQuery("from Blog where cateid='"+caid+"' and bauthor ='"+bauthor+"' order by blogid desc"); query.setFirstResult(firstRow); query.setMaxResults(maxRow); list=query.list(); session.flush(); session.close(); return (ArrayList) list; } } 请各位高手帮我看看,到底是什么原因(连接池问题,还是代码问题(不用连接池运转良好)导致数据库sleep连接不能释放。谢谢! 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-06-06
数据源配的有问题,应该用spring的数据源,由于hibernate本身支持c3p0,你只要在sessionFactory的hibernateProperties里配c3p0的属性即可。
楼主是新手吧?此帖应该发在新手区 |
|
返回顶楼 | |
发表时间:2007-06-06
tonyyl 写道 数据源配的有问题,应该用spring的数据源,由于hibernate本身支持c3p0,你只要在sessionFactory的hibernateProperties里配c3p0的属性即可。
谢谢回复。为何直接c3p0的数据源不行?按你的方法配置,MySQL Administator检测不出数据库连接。连接数量只有一个!
楼主是新手吧?此帖应该发在新手区 <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource" > <property name="driverClassName"> <value>com.mysql.jdbc.Driver</value> </property> <property name="url"> <value>jdbc:mysql://localhost/spring?useUnicode=true&characterEncoding=UTF-8</value> </property> <property name="username"> <value>root</value> </property> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource" /> </property> <property name="mappingResources"> <list> <value>com/voff/hibernate/Blog.hbm.xml</value> </list> </property> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.MySQLDialect </prop> <prop key="hibernate.show_sql"> true </prop> <prop key="hibernate.connection.provider_class"> org.hibernate.connection.C3P0ConnectionProvider </prop> <prop key="hibernate.c3p0.max_size">20</prop> <prop key="hibernate.c3p0.min_size">5</prop> <prop key="hibernate.c3p0.timeout">15000</prop> <prop key="hibernate.c3p0.max_statements">100</prop> <prop key="hibernate.c3p0.idle_test_period">120</prop> <prop key="hibernate.c3p0.acquire_increment">2</prop> </props> </property> </bean> |
|
返回顶楼 | |
发表时间:2007-06-06
连接池不是说一下保持n个数据库连接,是可复用connection对象(创建此对象很耗资源),这似乎是基础吧。。。
|
|
返回顶楼 | |
发表时间:2007-06-06
请问如何检测出可复用connection对象,如何知道连接池已经在起作用。
我以上的配置,我用JProfiler检测,找不到mchange(c3p0)的类包。 另外还有一个问题:就是内存在很多次查询blog,也就是显示blog时,内存一起往上涨,不知道是什么原因?(第二种配置) |
|
返回顶楼 | |
发表时间:2007-06-06
我觉得有可能是使用上的问题吧,比如一次请求处理完了之后hibernate的session没有被关闭,数据库链接也被保持着,因为session中会缓存查询到的对象,倒是会出现内存不断增加的情况。
|
|
返回顶楼 | |
发表时间:2007-06-06
还是得看源代码,以求彻底解决此问题。
如果c3p0起作用的话: tomcat起动后,打开浏览页后,可以看到设定的5个最小5个连接数(MySQL Adminstator观察)出现。 而且可以用Jprofire检测到c3p0包的使用情况: 。 当用户增加多时,数据库最大的连接数增到20后,连接数不再增加。 |
|
返回顶楼 | |
发表时间:2007-06-06
按要在sessionFactory的hibernateProperties里配c3p0的属性,配置后,发现c3p0连接池后不起作用。tonyyl的4楼说法应该有误。
继续请。 |
|
返回顶楼 | |
发表时间:2007-06-07
hibernate.connection.provider_class=C3p0ConnectionProvider,这样就该行了
|
|
返回顶楼 | |
发表时间:2007-06-07
这样都不行的话,那就不知道了。。。
|
|
返回顶楼 | |