<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>TX on 知识铺的博客</title>
    <link>https://index.zshipu.com/geek/tags/TX/</link>
    <description>Recent content in TX on 知识铺的博客</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-CN</language>
    <lastBuildDate>Wed, 06 Mar 2024 12:31:00 +0000</lastBuildDate>
    <atom:link href="https://index.zshipu.com/geek/tags/TX/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Spring-transaction</title>
      <link>https://index.zshipu.com/geek/post/code/docs/Spring/TX/Spring-transaction/</link>
      <pubDate>Wed, 06 Mar 2024 12:31:00 +0000</pubDate>
      <guid>https://index.zshipu.com/geek/post/code/docs/Spring/TX/Spring-transaction/</guid>
      <description>Spring 事务 Author: HuiFer 源码阅读仓库: SourceHot-Spring 声明式事务 Propagation 事务传播 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 public enum Propagation { /** * 有事务则加入，没有则新建 */ REQUIRED(TransactionDefinition.PROPAGATION_REQUIRED), /** * 有事务就用，如果没有就不开启(继承关系) * @see org.springframework.transaction.support.AbstractPlatformTransactionManager#setTransactionSynchronization */ SUPPORTS(TransactionDefinition.PROPAGATION_SUPPORTS), /** * 必须在已有事务中 */ MANDATORY(TransactionDefinition.PROPAGATION_MANDATORY), /** * 不管</description>
    </item>
  </channel>
</rss>
