How to setup Connection pool
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2014 12:07 AM
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
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
Labels:
- Labels:
-
Archive
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2014 07:14 AM
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.
But basic connection setup applies: choose a connection pool (eg c3p0, BoneCP, dbcp, …), wrap your datasource and pass it into the process engine configuration.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2014 09:29 PM
Thanks for the reply
