`
choelea
  • 浏览: 74460 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Spring AOP @Transactional

    博客分类:
  • J2EE
 
阅读更多

@Transactional

Propagation

Defines how transactions relate to each other. Common options

  • Required: Code will always run in a transaction. Create a new transaction or reuse one if availble.
  • Requires_new: Code will always run in a new transaction. Suspend current transaction if one exist.

Isolation

Defines the data contract between transactions.

  • Read Uncommitted: Allows dirty reads
  • Read Committed: Does not allow dirty reads
  • Repeatable Read: If a row is read twice in the same transaciton, result will always be the same
  • Serializable: Performs all transactions in a sequence

The different levels have different performance characteristics in a multi threaded application. I think if you understand the dirty reads concept you will be able to select a good option.


Example when a dirty read can occur

  thread 1   thread 2||
    write(x)||||        read(x)||
    rollback    |
      v         v 
           value (x) is now dirty (incorrect)

So a sane default (if such can be claimed) could be Read Comitted, which only lets you read values which have already been comitted by other running transactions, in combination with an isolation level of Required. Then you can work from there if you application has other needs.


A practical example where a new transaction will always be created when entering the provideService routine and completed when leaving.

publicclassFooService{privateRepository repo1;privateRepository repo2;@Transactional(propagation=Propagation.REQUIRES_NEW)publicvoid provideService(){
        repo1.retrieveFoo();
        repo2.retrieveFoo();}}

Had we used Required instead the transaction will remain open if the transaction was already open when entering the routine. Note also that the result of a rollback could be different as several executions could take part in the same transaction.


We can easily verify the behaviour with a test and see how results differ with propagation levels

@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations="classpath:/fooService.xml")publicclassFooServiceTests{private@AutowiredTransactionManager;private@AutowiredFooService fooService;@Testpublicvoid testProvideService(){TransactionStatus status = transactionManager.getTransaction(newDefaultTransactionDefinition());
        fooService.provideService();
        transactionManager.rollback(status);// assert repository values are unchanged ... }
分享到:
评论

相关推荐

    后端 Java Spring Data Jpa @Transactional 介绍

    事务管理是Spring的核心功能之一,它通过AOP(面向切面编程)来实现。当一个带有`@Transactional`的方法被调用时,Spring会创建一个代理,该代理会在方法执行前后处理事务的生命周期。如果方法没有显式地抛出未检查...

    Spring中@Transactional事务回滚(含实例

    Spring使用代理(Proxy)和面向切面编程(AOP)来实现`@Transactional`注解的功能。当Spring容器创建一个`@Transactional`标注的方法时,它会创建一个动态代理对象,该代理对象会在方法调用前后执行事务管理逻辑。...

    Spring @Transactional工作原理详解

    理解`@Transactional`的工作原理和Spring AOP代理机制,以及与EntityManager的关系,可以帮助我们更好地诊断和解决问题。 总的来说,`@Transactional`提供了声明式的事务管理,极大地简化了事务相关的代码,同时...

    spring的@Transactional注解详细用法1

    声明式事务管理是Spring框架的一大特色,它通过AOP(面向切面编程)实现,使得开发者无需在业务逻辑代码中处理事务控制,而是通过配置或注解来定义事务规则。这种非侵入式的开发方式让业务代码保持简洁,降低了耦合...

    Spring3事务管理——使用@Transactional 注解.rar

    - `@Transactional`注解仅在Spring AOP代理能够拦截到的方法上生效,因此,如果在非Spring管理的类或静态方法中使用,事务管理将不起作用。 - 如果事务属性设置不当,可能会导致数据不一致或并发问题,应谨慎调整...

    浅谈Spring中@Transactional事务回滚及示例(附源码)

    浅谈Spring中@Transactional事务回滚及示例 @Transactional是Spring Framework中的一种事务管理机制,用于管理数据库事务。它可以使得数据库操作更加安全和可靠。本文将详细介绍@Transactional的使用场景、checked...

    spring @Transactional 无效的解决方案

    "Spring @Transactional 无效的解决方案" Spring框架中的@Transactional注解是用来实现事务管理的,但是有时候我们可能会遇到@Transactional注解无效的情况。在这篇文章中,我们将 introducethe 解决方案,并通过...

    spring的@Transactional注解用法解读

    【Spring的@Transactional注解用法解读】 事务管理是企业级应用程序中的关键部分,它确保了在发生异常时数据的一致性。Spring框架提供了一种统一的方式来处理事务管理,包括对不同事务API(如JTA、JDBC、Hibernate...

    什么情况会导致@Transactional事务失效?

    13. **非Spring管理的对象**:如果一个类不是由Spring管理的,而是通过new关键字创建的,那么这个类的方法上的`@Transactional`注解将无效,因为Spring无法通过AOP代理来处理这些方法。 了解以上这些情况并避免它们...

    Spring中的@Transactional事物回滚实例源码

    1. **AOP代理**:Spring使用AOP(面向切面编程)来拦截带有`@Transactional`的方法调用。 2. **事务初始化**:当代理方法被调用时,Spring会检查当前是否存在事务。如果没有,就会根据注解上的配置启动一个新的事务...

    Spring源码学习十二:@Transactional是如何工作的1

    Spring 框架中 @Transactional 注解的工作原理分析 在 Spring 框架中,@Transactional 注解是一个非常重要的概念,经常用于数据库操作。那么,@Transactional 注解是如何工作的呢?让我们深入源码分析。 首先,从 ...

    Spring中@Transactional用法详细介绍

    最后,Spring通过AOP(面向切面编程)的动态代理机制实现@Transactional的事务管理。在使用时,需要确保已经启用了Spring的事务管理器,如DataSourceTransactionManager或JtaTransactionManager,并且相关bean已经...

    Java注解@Transactional事务类内调用不生效问题及解决办法

    在Spring框架中,@Transactional注解是通过AOP代理来实现事务管理的。在默认情况下,只有外部调用目标方法时,Spring才会生成代理对象来管理事务。但是,如果在同一个类中的其他方法调用有@Transactional注解的方法...

    java springAOP 事务+注释

    以上就是关于“Java Spring AOP 事务+注释”的详细解释,涵盖了Spring AOP的基本概念、事务管理机制以及`@Transactional`注解的使用。通过这些知识,我们可以更好地理解并实践Spring框架中的事务处理。

    spring AOP依赖三个jar包

    - **事务管理**:Spring AOP的一个常见应用就是声明式事务管理,通过`@Transactional`注解可以轻松地在方法级别控制事务。 综上所述,spring AOP依赖的这三个jar包构成了Spring框架面向切面编程的基础,它们共同...

    带有@Transactional和@Async的循环依赖问题

    在Spring框架中,`@Transactional` 和 `@Async` 是两个非常重要的注解,它们分别用于声明事务管理和异步执行。然而,当这两个注解同时出现在一个方法上时,可能会引发一些复杂的问题,特别是在存在循环依赖的情况下...

    spring aop demo 两种实现方式

    通过`@Transactional`注解,我们可以轻松地在方法级别声明事务边界,Spring AOP会自动处理事务的开启、提交或回滚。 压缩包中的"aop"文件可能包含了一个简单的Spring AOP示例项目,包括了上述两种实现方式的源代码...

    Spring AOP IOC源码笔记.pdf

    Spring提供了声明式事务管理,通过@Transactional注解在方法级别声明事务边界。事务传播行为(如REQUIRED、REQUIRES_NEW等)定义了方法调用如何参与当前事务。 9. JdbcTemplate与Spring JDBC: JdbcTemplate是...

    spring AOP的运用

    Spring AOP,全称Aspect-Oriented Programming(面向切面编程),是Spring框架的重要组成部分,它为Java应用程序提供了声明式的企业级服务,如事务管理、日志记录等。AOP的核心概念是切面(Aspect)和通知(Advice)...

    spring aop jar

    Spring AOP,全称为Aspect-Oriented Programming(面向切面编程),是Spring框架的重要组成部分,主要用来处理系统中的横切关注点,如日志、事务管理、权限控制等。通过AOP,我们可以将这些分散在代码各处的重复逻辑...

Global site tag (gtag.js) - Google Analytics