Is it possible to use bitronix.tm.resource.jdbc.PoolingDataSource
without using bitronix transaction manager and using standalone JBossTS instead?
For database access I use Hibernate, with transaction demarcation done with Spring's @Transactional
annotation (or Spring's TransactionTemplate
which has similar implementation). PoolingDataSource
and standalone JBossTS is used in tests, however I'd like not to abandon db connection pooling.
If it's not possible, what other pooling data source will fit here? Some other question suggests c3p0 is not an option. Is it true?