1. How to manage the transaction(which includes File IO) when an IOException is thrown from the close file method stackoverflow.comI'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.comIn 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.comim 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.orgHow 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.orgSpring 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.orgHow 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.orgImplications 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.orgIntegrating 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.orgI 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.orgIntroducing 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.orgHibernate 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.orgUsing 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.orgTransactions 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.orgHow 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.orgCan'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.orgWould 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.orgHow 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.orgGet 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.orgHow 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.orgThis 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 |