Spring transaction internals

前端 未结 3 1661
执笔经年
执笔经年 2021-02-04 18:13

The situation is as follows:

  1. Method1 has four database update methods in it. The Method1 is annotated using the Spring transaction management semantics.

3条回答
  •  臣服心动
    2021-02-04 19:11

    Have you read the Spring documentation? Basically AOP is used to manage the transaction. You should also read the AOP documentation. If the AOP documentation is not enough I suggest you go through the code. Stepping through the code in debug mode with break-point would be good.

提交回复
热议问题