At this moment I\'m using DriverManagerDataSource with @Transactional annotation to manage transactions. But all transactions are very very slow, probably because data sourc
DriverManagerDataSource isn't actually a connection pool and should only be used for testing. You should try BasicDataSource from Apache Commons DBCP. Something like: