Top "Transactional" questions

A set of interrelated operations that must all succeed in order for any of them to succeed.

Spring @Transactional - isolation, propagation

Can someone explain what isolation & propagation parameters are for in the @Transactional annotation via real-world example? Basically when and …

java spring transactional isolation propagation
Spring - @Transactional - What happens in background?

I want to know what actually happens when you annotate a method with @Transactional? Of course, I know that Spring …

java spring spring-aop spring-jdbc transactional
Showing a Spring transaction in log

I configured spring with transactional support. Is there any way to log transactions just to ensure I set up everything …

java spring transactional
@Transactional method calling another method without @Transactional anotation?

I've seen a method in a Service class that was marked as @Transactional, but it was also calling some other …

java spring spring-transactions transactional
Spring @Transactional not working

I previously had a post on this issue that was resolved. However since rebuilding the project with auto wired beans …

spring spring-mvc spring-transactions transactional
Difference between transactional and non-transactional

Simply stated: What is the difference between "Transactional" and "Non-Transactional"? In my case I came up with this question while …

transactions transactional master-data-management
Why we shouldn't make a Spring MVC controller @Transactional?

There are already a few questions about the topic, but no response at all really provides arguments in order to …

java spring-mvc controller transactional
Transactional saves without calling update method

I have a method annotated with @Transactional. I retrieve an object from my Oracle DB, change a field, and then …

java hibernate spring transactional
Spring @Transactional does not work in JUnit test?

I am using Spring 3.2, Hibernate and JUnit 4. My Dao class is as follows: @Transactional public class SomeDaoImpl implements SomeDao { The …

spring hibernate junit4 spring-test transactional
Using tx:annotation-driven prevents Autowiring a bean

I'm developing a module on an OSGi application, using Spring MVC and Virgo Webserver. On my module I have a …

spring spring-mvc osgi transactional eclipse-virgo