manage transaction « Transaction « Spring Q&A





1. How to manage the transaction(which includes File IO) when an IOException is thrown from the close file method    stackoverflow.com

I've recently begun using Spring's Data Source Transaction Manager. I have a problem now. My transaction includes updates to a DB table and a write operation to a file. It works ...

2. Spring managed transaction issue with Teradata    stackoverflow.com

In my application, hibernate transactions are managed by spring aop and uses Teradata as database. THIS ISSUES IS SPECIFIC TO TERADATA AND THE SAME CODE WORKS FINE IN MYSQL. There is one ...

3. can spring-managed-transaction survives multiple request-response-s?    stackoverflow.com

im currently developing using jsf 2, jpa 2, and spring 3. I think i quite understand the use of @Transactional and it's propagation, but stil, that only applies to one thread, which ...

4. How to manage the transaction(which includes File IO) when an IOException is thrown f    forum.springsource.org

How to manage the transaction(which includes File IO) when an IOException is thrown f I've recently begun using Spring's Data Source Transaction Manager. I have a problem now. My transaction includes ...

5. Spring managed transaction issue with Teradata    forum.springsource.org

Spring managed transaction issue with Teradata In my application, hibernate transactions are managed by spring aop and uses Terdata as database. THIS ISSUES IS SPECIFIC TO TERADATA AND THE SAME CODE ...

6. How to manage transaction throughput in a clustered Spring app?    forum.springsource.org

How to manage maximum transaction throughput in a clustered Spring app? Hi, We have a Spring application providing webservices running within a JBoss Application Server environment. This is run across multiple ...

7. Implications on appserver managed transactions    forum.springsource.org

Implications on appserver managed transactions Hi all! I would like to know if the Spring container has any impact on the transaction management if it is only used for component lookup. ...

8. Integrating Spring Managed Transactions into Legacy Code?    forum.springsource.org

Integrating Spring Managed Transactions into Legacy Code? We're trying to integrate some Spring managed code which uses declarative transactions and Hibernate into some legacy code which manages its own database connections ...

9. Manage transactions in my own application    forum.springsource.org

I want to manage my own transactions, ie without web applications servers like JBoss or something like this. But I have some problem. Here is my code : DefaultTransactionDefinition def = ...





10. Introducing Spring managed transactions to an existing application?    forum.springsource.org

Introducing Spring managed transactions to an existing application? All, I am looking to use Spring's declaritive transactions with an existing application. This application currently runs on Webogic and has a mixture ...

11. Hibernate using Spring managed JTA transactions    forum.springsource.org

Hibernate using Spring managed JTA transactions Hi, I'm using Hibernate with Spring managet JTA Transactions in Weblogic server. If I call an empty service-layer method from web-layer, one JTA transaction is ...

12. Using container managed transactions    forum.springsource.org

Using container managed transactions Hello. In our application we have remote EJBs (in Weblogic 8.1) calling spring beans to solve business logic. Those beans access data in two databases. What is ...

13. Transactions in a non-managed environment    forum.springsource.org

Transactions in a non-managed environment Hi, Again, another noob question - doubly embarassing as I gave up on my other problem (trying to get a JTA under Tomcat - it worked ...

14. How to I manage transactions per request using JPA    forum.springsource.org

How to I manage transactions per request using JPA I have a custom view that serializes my entire object graph which comes from the database. I have a DAO which uses ...

15. Can't Use Raw Hibernate3 API in Spring-Managed Transaction?    forum.springsource.org

Can't Use Raw Hibernate3 API in Spring-Managed Transaction? In the Manual and JavaDoc, Spring explicit states that it plays really well with Hibernate's Contextual Sessions feature. Namely, that when you configure ...

16. How we manage complicated Transaction    forum.springsource.org

Would you mind to suggest an example of utilizing SpringFramework + Hibernate + JTS + JTA to manage Transaction involving MQ and RDBMS together, please? I have no idea how we ...





17. How Transactions are managed ?    forum.springsource.org

How Transactions are managed ? Code: AccountService { @Transactional public void transfer(Account acc1,Account acc2,int amount){ acc1.setAmount(acc1.getAmount()-amount)); acc2.setAmount(acc2.getAmount()+amount)); accountDAO.updateAccount(acc1); accountDAO.updateAccount(acc2); } public void deleteAccount(Account acc){ accountDAO.deleteAccount(acc); } } In above code snippet,lets ...

18. Get error about managed transactions with @Transactional with OpenJPA    forum.springsource.org

Get error about managed transactions with @Transactional with OpenJPA I'm constructing an app using Spring 2.5.6, CXF, OpenJPA 1.2.1, and WebLogic 10.3.2. I specify a JTA datasource in my persistence.xml. I ...

19. How to manage multiple transaction    forum.springsource.org

How to manage multiple transaction Hi, I have a scenario to synchronize multiple database of different type (SQL Server, MySQL, etc) I have 1 main source then I need to distribute ...

20. transaction mgmt for Hibernate managed objects    forum.springsource.org

This doesn't make sense to me. It is usually necessary to run service (and/or Hibernate DAO methods) transactionally. Those services (and also DAOs) are declared as singleton beans in Spring's application ...

21. Spring managed transaction issue with Teradata    forum.hibernate.org

22. Hibernate using Spring managed JTA transactions    forum.hibernate.org