DataSourceTransactionManager « Transaction « Spring Q&A





1. DataSourceTransactionManager and test for active transaction    stackoverflow.com

I have a simple app that use org.springframework.jdbc.datasource.DataSourceTransactionManager to manage the transactions. My spring config is as follow:

<tx:annotation-driven/>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource"/>
</bean>
I have annotated the method with @Transactional ...

2. Is it ok to use DataSourceTransactionManager for ORM persistence instead of HibernateTransactionManager?    stackoverflow.com

I am debugging our webapp. It is configured to create a DataSourceTransactionManager bean and also a HibernateTransactionManager bean on startup. This is not intentional but is caused ...

3. Problem in applying Transaction - DataSourceTransactionManager    forum.springsource.org

Feb 14th, 2007, 08:27 AM #1 pagilan View Profile View Forum Posts Private Message Junior Member Join Date Jan 2006 Posts 26 Problem in applying Transaction - DataSourceTransactionManager Hi, Iam using ...

4. Single transaction, multiple requests using DataSourceTransactionManager subclass    forum.springsource.org

Single transaction, multiple requests using DataSourceTransactionManager subclass I'm hoping to discover if I am using the DataSourceTransactionManager in the proper way, as a base class to support long transactions that exist ...

5. Transaction does not rollback on using DataSourceTransactionManager    forum.springsource.org

Transaction does not rollback on using DataSourceTransactionManager As per the Spring's web-documentation , I am using 'Programmatic transaction management' using 'TransactionTemplate' to handle my transaction context. However my transaction does not ...

6. Many transaction classNotFound errors with simple JDBC DataSourceTransactionManager    forum.springsource.org

Many transaction classNotFound errors with simple JDBC DataSourceTransactionManager I want to know how to get rid of the exceptions below without getting the Jars for those classes, since I don't actually ...

7. Why can I only use one transaction per thread when using DataSourceTransactionManager    forum.springsource.org

Why can I only use one transaction per thread when using DataSourceTransactionManager Hello everyone, I am currently evaluating and learning spring which I am going to use to improve a complex ...

8. DataSourceTransactionManager & Postgre -> current transaction is aborted, commands...    forum.springsource.org

DataSourceTransactionManager & Postgre -> current transaction is aborted, commands... Hi all, I'm trying to make DataSourceTransactionManager work, unsuccessfully (JBoss 4.2.2 and PostgreSQL 8.3). When I try to save an object, I ...

9. issue with multi-thread transaction and DataSourceTransactionManager    forum.springsource.org

issue with multi-thread transaction and DataSourceTransactionManager Hello, i have a problem to use a DataSourceTransactionManager in a multi thread context with quartz. I have made a test case : final DataSourceTransactionManager ...