Questions related to Spring's Transaction API (programmatic or declarative)
I have read through various Stackover flow Questions and contents on the web on similar problem. However, I couldnt find …
java mysql hibernate spring-transactions apache-commons-dbcpI am using Spring and Hibernate in my application and using Spring Transaction. So I have a service layer with …
java spring hibernate spring-transactionsWe have an application running on JBoss 4.2.3, using Spring 2.5.2 and Hibernate 3.2.6.ga. This is running on Linux JEE01 2.6.16.60-0.54.5-smp, …
java hibernate spring jboss spring-transactions1 quick question on Spring JPA repositories transactionality. I have a service that is not marked as transactional and calls Spring …
java jpa spring-data spring-transactionsI'm using Spring with JPA. I have @EnableAsync and @EnableTransactionManagement turned on. In my user registration service method, I have …
java spring jpa spring-transactionsI'm having an application here based on Spring MVC. My workmate (btw he's not here) configured it programmatically and everything …
java hibernate spring-mvc spring-transactionsUpon starting my application, I get numerous warnings along the lines of o.s.aop.framework.Cglib2AopProxy 'Unable to …
spring spring-aop spring-transactionsI'm trying to understand where is the right place to put @EnableTransactionManagement annotation in case of multiple JavaConfig contexts? Consider …
java spring jpa spring-transactionsIm using SpringBatch 2.1.7 release core and Infrastructure jars to read a CSV file and save it to DB. Integrated my …
spring-batch spring-transactionsImagine this code: foo() { Connection conn = ...; } foo() has been called from a method that has the annotation @Transactional. How do …
java spring jdbc connection spring-transactions