cancel
Showing results for 
Search instead for 
Did you mean: 

How to setup Connection pool

josh3006
Champ in-the-making
Champ in-the-making
Hi,

Currently I'm using Activiti 5.9 using OSGI ( karaf )
When I check org.activiti.karaf.cfg , I notice my datasource is using JDBC connections.
If I want to make it uses connection pool, how can I do this ?

Please advice


2 REPLIES 2

jbarrez
Star Contributor
Star Contributor
Even with a connection pool - it will still us jdbc connections 😉

But basic connection setup applies: choose a connection pool (eg c3p0, BoneCP, dbcp, …), wrap your datasource and pass it into the process engine configuration.

josh3006
Champ in-the-making
Champ in-the-making
Thanks for the reply