AHA! That was it! My 'Spring' class is a simple wrapper around common operations, and the getDataSource() function was returning the original, non-pooled datasource, so it didn't know about the...
Type: Posts; User: jjasmin; Keyword(s):
AHA! That was it! My 'Spring' class is a simple wrapper around common operations, and the getDataSource() function was returning the original, non-pooled datasource, so it didn't know about the...
I switched to use DBCP instead of C3P0, but rollbacks still don't work for me.
My config is:
<bean id="dbcpDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">...
OK -- getting somewhere.
First off, I was looking in the wrong config file... :oops: I saw that I had connection pooling via c3p0. I changed the config to NOT use connection pooling, and...
Could this be the problem?
2004-10-15 14:04:51,457 DEBUG [org.springframework.transaction.support.TransactionSynchronizationManager] Bound value...
This is driving me crazy.
Spent some time debugging the spring data access code, and I see that in the middle of JdbcTemplate.execute(PreparedStatementCreator psc, PreparedStatementCallback...
I'm new to the spring framework, and am liking it so far. However, I cannot get transactions to work for the life of me.... I am trying to use programmatic transactions at the moment, I'll play with...