About 36,700,000 results
Open links in new tab
  1. 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 will wrap that method in a Transaction. But, I have the following …

  2. java - What does @Transactional do? - Stack Overflow

    What does @Transactional do? [duplicate] Asked 12 years ago Modified 5 years, 9 months ago Viewed 28k times

  3. Annotation @Transactional. How to rollback? - Stack Overflow

    Oct 24, 2011 · I used this annotation successfully for a Dao class. And rollback works for tests. But now I need to rollback real code, not just tests. There are special annotations for use in …

  4. Where does the @Transactional annotation belong? - Stack …

    Jul 3, 2009 · Should you place the @Transactional in the DAO classes and/or their methods or is it better to annotate the Service classes that are using the DAO objects? Or does it make …

  5. transações - Funcionamento do @Transactional do Spring …

    1 - Na documentação do Spring é descrito o uso de @Transactional do Spring nas classes de regra de negócio(ProdutosService por exemplo) tem algum motivo especial para se usar essa …

  6. Spring @Transactional - isolation, propagation - Stack Overflow

    Dec 13, 2011 · Can someone explain the isolation & propagation parameters in the @Transactional annotation via a real-world example? Basically when and why should I choose …

  7. When should we use @Transactional annotation? - Stack Overflow

    Mar 9, 2024 · I wanted to know when we should use @Transactional in Spring Boot Services. Since JpaRepository's save() method is annotated with @Tranasactional is it required for me …

  8. message queue - Transactional outbox confusion - Stack Overflow

    Sep 21, 2023 · A transactional outbox is not a queue, it's a staging area for messages before they are delivered to the broker. Technically, yes, it's a FIFO queue in a table so that messages are …

  9. java - javax.transaction.Transactional vs org.springframework ...

    265 I don't understand what is the actual difference between annotations javax.transaction.Transactional and …

  10. transactions - How to manage Kafka transactional producer …

    In non-transactional usage, producer objects are thread safe and it is common to share one object among all request serving threads. It is also straightforward to setup transactional producer …