CompletableFuture未来链中的程序化交易

时间:2019-10-21 16:50:37

标签: spring-boot java-8 spring-transactions completable-future

我如何从CompletableFuture链的第一步开始进行交易,并在最后一个thenCompose()结束该事务?例如:

  .thenApply(r -> {
                // Start transaction here
            })
  .thenCompose(r -> {

            })
  .thenCompose(r -> {

            })
  .thenCompose(r -> {
               //end transaction here
            })
  .whenComplete((r, t) -> {

            });

是否可以进行程序化交易?还是我必须和PlatformTransactionManager一起去?

0 个答案:

没有答案