被標記為事務的方法互相調用的坑(下)

来源:https://www.cnblogs.com/CodeBear/archive/2018/12/12/10111045.html
-Advertisement-
Play Games

參考:https://www.iteye.com/topic/1122740 上一節,主要分析了 被標記為事務的方法互相調用,事務失效的原因,思考比較多,這一節主要說說解決方案,思考會少一些。 解決方案的核心: 通過代理對象去調用方法 1.把方法放到不同的類: 我們需要新建一個介面: 再定義一個類去 ...


參考:https://www.iteye.com/topic/1122740

上一節,主要分析了 被標記為事務的方法互相調用,事務失效的原因,思考比較多,這一節主要說說解決方案,思考會少一些。

解決方案的核心: 通過代理對象去調用方法

1.把方法放到不同的類:

我們需要新建一個介面:

public interface OtherService {
    void insertCodeMonkey();
}

再定義一個類去實現這個介面:

@Service
public class OtherServiceImpl implements OtherService {

    @Autowired
    AccountMapper mapper;

    @Override
    @Transactional(propagation=Propagation.REQUIRES_NEW)
    public void insertCodeMonkey() {
        Account account = new Account();
        account.setAccount("CodeMonkey");
        account.setPassword("CodeMonkey");
        mapper.insert(account);
        int a = 1 / 0;
    }
}

修改原本的實現類:

@Service
public class AccountSerivceImpl implements AccountService {

    @Autowired
    AccountMapper mapper;

    @Autowired
    OtherService otherService;

    @Transactional
    @Override
    public void insertCodeBear() {

        try {
            otherService.insertCodeMonkey();
        } catch (Exception e) {
            e.printStackTrace();
        }

        Account account = new Account();
        account.setAccount("CodeBear");
        account.setPassword("CodeBear");
        mapper.insert(account);
    }
}

運行,查看資料庫:
image.png
只有一條數據,insertCodeBear方法執行成功了,insertCodeMonkey執行失敗,並且回滾了。

讓我們再看看控制台的日誌:
image.png

可以看到是開了兩個事務去執行的。

這種解決方案最簡單,不需要瞭解其他東西,但是這種方案需要修改代碼結構,本來兩個方法都是屬於同一個類的,現在需要強行把它們拆開。

2. AopContext:

我們的目標是要在實現類中獲取本類的代理對象,Spring提供了Aop上下文,即:AopContext,通過AopContext,可以很方便的獲取到代理對象:

@Service
public class AccountSerivceImpl implements AccountService {

    @Autowired
    AccountMapper mapper;

    @Transactional
    @Override
    public void insertCodeBear() {
        try {
            ((AccountService)AopContext.currentProxy()).insertCodeMonkey();
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        Account account = new Account();
        account.setAccount("CodeBear");
        account.setPassword("CodeBear");
        mapper.insert(account);
    }

    @Transactional(propagation = Propagation.REQUIRES_NEW)
    @Override
    public void insertCodeMonkey() {
        Account account = new Account();
        account.setAccount("CodeMonkey");
        account.setPassword("CodeMonkey");
        mapper.insert(account);
        int a = 1 / 0;
    }
}

當寫好代碼,很愉快的去測試,發現竟然報錯了:

image.png
翻譯下:不能找到當前的代理,需要設置exposeProxy屬性為 true使其可以。

expose字面意思就是 暴露。也就是說 我們需要允許暴露代理。

我們需要在Spring Boot啟動類上+一個註解:

@EnableAspectJAutoProxy(exposeProxy = true)
@SpringBootApplication
@MapperScan(basePackages = "com.codebear.Dao")
public class SpringbootApplication {
    public static void main(String[] args) throws Exception {
        SpringApplication.run(SpringbootApplication.class, args);
    }
}

再次運行:

image.png

確實是開啟了兩個事務去執行的。

再看看資料庫,也沒有問題。

3. ApplicationContext:
@Service
public class AccountSerivceImpl implements AccountService {

    @Autowired
    AccountMapper mapper;

    @Autowired
    ApplicationContext context;

    AccountService service;

    @PostConstruct
    private void setSelf() {
        service = context.getBean(AccountService.class);
    }

    @Transactional
    @Override
    public void insertCodeBear() {
        try {
            service.insertCodeMonkey();
        } catch (Exception e) {
            e.printStackTrace();
        }
        Account account = new Account();
        account.setAccount("CodeBear");
        account.setPassword("CodeBear");
        mapper.insert(account);
    }

    @Transactional(propagation = Propagation.REQUIRES_NEW)
    @Override
    public void insertCodeMonkey() {
        Account account = new Account();
        account.setAccount("CodeMonkey");
        account.setPassword("CodeMonkey");
        mapper.insert(account);
        int a = 1 / 0;
    }
}

驗證的圖片就省略了。

此方法不適用於prototype

在這裡,我用了一個@PostConstruct註解,在初始化的時候,會調用被@PostConstruct標記的方法(註意,僅僅是初始化的時候,才會被調用。以後都不會被調用了,大家可以打個斷點試一下),這裡這麼做的目的就是為了提升一下效率,不用每次都getBean。所以如果這個類是prototype的,就不適用這個方法了。如果是prototype的話,就在insertCodeBear方法中使用getBean方法吧。

上兩種方法比較方便,沒有新建其他的介面或者是類,但是沒有很好的封裝獲得Aop代理對象的過程,也不是很符合 迪比特法則,也就是最少知識原則。

4. 重寫BeanPostProcessor介面:

關於這個介面是做什麼的,這裡就不詳細闡述了,簡單的來說這是Spring提供的介面,我們可以通過重寫它,在初始化Bean之前或者之後,自定義一些額外的邏輯。
首先,我們需要定義一個介面:

public interface WeavingSelfProxy {
    void setSelfProxy(Object bean);
}

要獲得代理對象的類,需要去實現它:

@Service
public class AccountSerivceImpl implements AccountService, WeavingSelfProxy {

    @Autowired
    AccountMapper mapper;

    AccountService service;

    @Override
    public void setSelfProxy(Object bean) {
        System.out.println("進入到setSelfProxy方法");
        service = (AccountService) bean;
    }

    @Transactional
    @Override
    public void insertCodeBear() {
        try {
            service.insertCodeMonkey();
        } catch (Exception e) {
            e.printStackTrace();
        }
        Account account = new Account();
        account.setAccount("CodeBear");
        account.setPassword("CodeBear");
        mapper.insert(account);
    }

    @Transactional(propagation = Propagation.REQUIRES_NEW)
    @Override
    public void insertCodeMonkey() {
        Account account = new Account();
        account.setAccount("CodeMonkey");
        account.setPassword("CodeMonkey");
        mapper.insert(account);
        int a = 1 / 0;
    }
}

重寫BeanPostProcessor介面:

@Component
public class SetSelfProxyProcessor implements BeanPostProcessor {
    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
        return bean;
    }

    @Override
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        if(bean instanceof WeavingSelfProxy){
            System.out.println("實現了WeavingSelfProxy介面");
            ((WeavingSelfProxy) bean).setSelfProxy(bean);
        }
        return bean;
    }
}

這樣就可以了,驗證的圖片也省略了。

以上就是四種解決方案,可以說 各有千秋,沒有哪個好,哪個壞,只有適不適合。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ss -l ...
  • Python基礎知識(30):圖形界面(Ⅰ) Python支持多種圖形界面的第三方庫:Tk、wxWidgets、Qt、GTK等等 Tkinter可以滿足基本的GUI程式的要求,此次以用Tkinter為例進行GUI編程 一、編寫一個GUI版本的“Hello, world!” 本人使用的軟體是pycha ...
  • CDQ分治小結 warning:此文僅用博主複習使用,初學者看的話後果自負。。 複習的時候才發現以前根本就沒寫過這種東西的總結,簡單的扯一扯 cdq分治的經典應用就是解決偏序問題 比如最經典的三維偏序問題 給出$n$個數,每個數$i$,有三個屬性$a_i, b_i, c_i$,現在我們要統計對於每個 ...
  • 說起裝飾器我們可能已經很熟悉了(不瞭解的可以查看python基礎學習——裝飾器),隨手就可以寫一個簡單的裝飾器 def decorator(func): def inner(*args, **kwargs): # 執行函數前做點事 result = func(*args, **kwargs) # 執 ...
  • 不管是給字元串賦值,還是對字元串格式化,都屬於往字元串填充內容,一旦內容填充完畢,則需開展進一步的處理。譬如一段Word文本,常見的加工操作就有查找、替換、追加、截取等等,按照字元串的處理結果異同,可將這些操作方法歸為三大類,分別說明如下。一、判斷字元串是否具備某種特征該類方法主要用來判斷字元串是否 ...
  • 一、 更新系統 #yum -y install epel-release #yum clean all && yum makecache #yum -y update 二、安裝python3 系統自帶的python版本是2,並且沒有安裝pip 1、python2安裝pip #yum -y insta ...
  • 項目結構搭建 ...
  • with/as 使用open打開過文件的對with/as都已經非常熟悉,其實with/as是對try/finally的一種替代方案。 當某個對象支持一種稱為"環境管理協議"的協議時,就會通過環境管理器來自動執行某些善後清理工作,就像finally一樣:不管中途是否發生異常,最終都會執行某些清理操作。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...