关于hibernate c3p0的配置问题,求教
1个回答
2016-05-09 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
注意看2处地方:
1。c3p0.initialPoolSize not available -- uses minimum size
说明,这个配置不能在hibernate里面配置,它会使用 minPoolSize。
2。these, and only these, properties must be defined in your hibernate configuration,
强调,在hibernate里面只能且必须配置这些属性。
很多网上给出的配置文档,都是不正确的,或者说不规范!不知为什么就没有人提出这问题来。估计是抄来抄去的。
另外,配置这些属性在hibernate里,下面的写法是不正确的!或者说不规范。
<property name="hibernate.c3p0.acquireRetryAttempts">30</property>
<property name="hibernate.c3p0.acquireIncrement">2</property>
<property name="hibernate.c3p0.idleConnectionTestPeriod">120</property>
<property name="hibernate.c3p0.maxIdleTime">180</property>
<property name="hibernate.c3p0.maxPoolSize">50</property>
<property name="hibernate.c3p0.minPoolSize">1</property>
<property name="hibernate.c3p0.maxStatements">0</property>
1。c3p0.initialPoolSize not available -- uses minimum size
说明,这个配置不能在hibernate里面配置,它会使用 minPoolSize。
2。these, and only these, properties must be defined in your hibernate configuration,
强调,在hibernate里面只能且必须配置这些属性。
很多网上给出的配置文档,都是不正确的,或者说不规范!不知为什么就没有人提出这问题来。估计是抄来抄去的。
另外,配置这些属性在hibernate里,下面的写法是不正确的!或者说不规范。
<property name="hibernate.c3p0.acquireRetryAttempts">30</property>
<property name="hibernate.c3p0.acquireIncrement">2</property>
<property name="hibernate.c3p0.idleConnectionTestPeriod">120</property>
<property name="hibernate.c3p0.maxIdleTime">180</property>
<property name="hibernate.c3p0.maxPoolSize">50</property>
<property name="hibernate.c3p0.minPoolSize">1</property>
<property name="hibernate.c3p0.maxStatements">0</property>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询