When using the Transaction() attribute on a method the default isolation level is ReadCommitted.What I want to do is set the default isolation level to ReadUncommitted in the Spring.NET config ( so as
Grails 1.3.7 We have a service method that merges 2 users.There are quite a few pieces to this because of the amount of data so that is quite a bit of reading, updating, and writing.We have transacti
I am looking to retrofit our existing transaction API to use Spring’s PlatformTransactionManager, such that Spring will manage our transactions. I chained my DataSources as follows:
I have a Restful web service developed in Spring MVC which currently returns farmer information and allows for the deletion and addition of new farmers to the database. When extending the web service
I am getting the following error while load a user data. org.hibernate.HibernateException: load is not valid without active transaction
I have a Spring+Hibernate application with declarative transaction management. I have a service (FooService) which has 2 public methods MethodA and MethodB. The client will call the MethodA which in t
i am using AspectJ compile time weaving and spring 3.O. and Hibernate 3.0...AspectJ weaving is working fine for simple things like logging but this is not working correctly for Transaction
I\'m writing a test harness for an Oracle (10g) stored procedure. I\'m planning to use a @Transactional test to run the stored procedure, so that the transaction will be rolled back when the test ends
All, I am trying to use the annotational transaction in Spring and getting the javax.persistence.TransactionRequiredException: no transaction is in progress
I\'m developing with JPA 2 and Spring 3. I\'m using the @Repository for my Dao classes hoping that i could make use of the Spring exception translation.