C3P0 initialPoolSize non longer initialized with minPoolSize

Description

With hibernate 3.x, when hibernate.c3p0.min_size was set, it used to initialize both c3p0.minPoolSize and c3p0.initialPoolSize.
That allowed a pool to be inited with one connection only.

With hibernate 4.x, this no longer works. Thus, c3p0.initialPoolSize gets its default value, which is 3 and we get a pool with a minimum of 3 connections.

A workaround consists of setting a "hibernate.c3p0.initialPoolSize" property but this is awkward because it is not among official hibernate.c3p0.* properties (which use underscore instead of camelCase names)

Activity

Show:

Brett MeyerJuly 11, 2013 at 10:37 PM

From the PR's commit:

Adding C3P0_STYLE_INITIAL_POOL_SIZE directly to c3props doesn't work because of prefix "c3p0." Using setOverwriteProperty checks for the nullability of the value and removes this prefix

Good catch – thanks for the PR!

Laurent RICHARDJune 12, 2013 at 9:19 AM

I made pull request https://github.com/hibernate/hibernate-orm/pull/547 (I hope I followed the procedure correctly)

Fixed

Details

Assignee

Reporter

Components

Fix versions

Affects versions

Priority

Created June 11, 2013 at 7:16 PM
Updated August 8, 2013 at 2:32 AM
Resolved July 11, 2013 at 11:45 PM