I am using jpatransactionmanager in spring data jpa and provider is Hibernate.
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactoryBean" />
</bean>
I have three entities say Aentity, Bentity. A and B has one to one relation. There is a third entity Centity. Persistence of Centity is independent of Aentity and Bentity. However, I have found whenever Centity is saved Aentity and Bentity are flushed automatically to db. I want to control this behaviour and want to ensure that they should be persisted when i call save using their repository.
Other Info: Aentity has cascase on for B. Transaction Info for Centity is : Propogation: requires new and isolation=default
I have looked in many forums but could not find hint/solution.
May be autocommit is enabled hence entities are flushing to database as soon you are calling save method. Try using this.