Questions related to Spring's Transaction API (programmatic or declarative)
Currently I'm setting autocommit to false in spring through adding a property to a datasource bean id like below : <…
spring spring-mvc spring-jdbc spring-transactionsI'm trying to configure org.apache.commons.dbcp.BasicDataSource as bean in web.xml under a tomcat project using tomcat 6 …
java spring-mvc spring-transactions hibernate-annotationsI have found several questions and answers with regard to this issue on SO, but they all seem to cover …
java spring hibernate spring-transactionsI have an application built on Spring. I let the Spring do the all @Transactional magic and everything works fine …
java spring jpa spring-transactionsI have a method, 'databaseChanges', which call 2 operations: A, B in iterative way. 'A' first, 'B' last. 'A' & 'B' …
java oracle spring-boot jdbctemplate spring-transactionsI want to test hibernate session's save() method using spring testing framework. @Test method is : @Test @Transactional public void testSave() { …
java hibernate spring-transactions spring-test hibernate-sessionIn my Spring Boot project I have implemented following service method: @Transactional public boolean validateBoard(Board board) { boolean result = false; …
spring spring-boot spring-data spring-data-jpa spring-transactionsI have a Spring 3.2 application that uses Hibernate 4 and Spring Transactions. All the methods were working great and I could …
spring hibernate spring-transactions hibernate-sessionSo in the latest version of Spring we are able to use the @Configuration annotation to setup our configurations for …
java spring configuration transactions spring-transactionsI am discovering actually Spring and I am able to setup some jobs. Now, I would like to save my …
java spring jpa spring-batch spring-transactions