Hi.
I'm working with hibernate/hikari stack, and just though it would be cool to configure HikariCPConnectionProvider not only via classic properties, but by passing user-generated HikariConfig as well :
{code:java} config = new HikariConfig(); . .. provider = new HikariCPConnectionProvider(); provider.configure(config); {code}
That would allow more flexible configurations for end users and decrease amount of depressive typos (e.g. when you type things like `max_poool_size` and don't discover it for a while). |
|