I've realized (by reading the manual, embarrassingly) that "Transaction synchronization" is about binding resources to the current thread, and is optional. So the answer is yes, you can have...
Type: Posts; User: Antony Warner; Keyword(s):
I've realized (by reading the manual, embarrassingly) that "Transaction synchronization" is about binding resources to the current thread, and is optional. So the answer is yes, you can have...
A quick update. I have put some code into our DAO framework code that pulls the rug out from underneath Spring by releasing any thread-bound connection it finds (this is a hack that involves a...
Thanks for your input. The scope of the transactions is the usual j2ee way: a service layer of spring managed beans with a transaction wrapping each service invocation. So the scope of the...
Hi,
We have an application that is beginning to make use of JdbcTemplate. I notice that this class, via DataSourceUtils, will get a Connection from the supplied DataSource then hold on to it for...