注解@TransactionalEventListener

例如 用戶注冊之后需要計(jì)算用戶的邀請關(guān)系,遞歸操作屿衅。如果注冊的時候包含多步驗(yàn)證娱颊,生成基本初始化數(shù)據(jù),這時候我們通過mq發(fā)送消息來處理這個邀請關(guān)系箱硕,會出現(xiàn)一個問題,就是用戶還沒注冊數(shù)據(jù)還沒入庫栓拜,邀請關(guān)系就開始執(zhí)行,但是查不到數(shù)據(jù)挑势,導(dǎo)致出錯啦鸣。

@TransactionalEventListener 可以實(shí)現(xiàn)事務(wù)的監(jiān)聽,可以在提交之后再進(jìn)行操作诫给。
——————————————
1.實(shí)體類

@Data
public class Customer {

    private Integer id;

    private String name;

}

2.監(jiān)聽的對象

import lombok.Getter;
import org.springframework.context.ApplicationEvent;

/**
 * fileName:RegCustomerEvent
 * description:
 * author: LJV
 * createTime:2022/8/19 14:41
 * version:1.0.0
 */
@Getter
public class RegCustomerEvent extends ApplicationEvent {

    private Customer customer;

    /***
     * @description 構(gòu)造函數(shù)火脉,用于設(shè)置消息體屬性內(nèi)容
     * @author 朱孝恒(javazhuxiaoheng @ 163.com)
     * @date 2022-03-17
     * @param customer 推送對象
     */
    public RegCustomerEvent(Customer customer) {
        super(customer);
        this.customer = customer;
    }

}

3.Spring事務(wù)事件發(fā)送, 用于調(diào)用ApplicationEventPublisher發(fā)布事件

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.stereotype.Service;

/**
 * fileName:TranscationEventPublisher
 * description:Spring事務(wù)事件發(fā)送, 用于調(diào)用ApplicationEventPublisher發(fā)布事件
 * author: LJV
 * createTime:2022/8/19 14:58
 * version:1.0.0
 */
@Service
public class TranscationEventPublisher {

    /**
     * Spring事件發(fā)布器對象
     */
    @Autowired
    private ApplicationEventPublisher applicationEventPublisher;

    /***
     * @description 發(fā)布數(shù)據(jù)生成事件
     * @author
     * @date 2022-03-17
     * @param customer
     */
    public void publishCustomerEvent(Customer customer) {
        applicationEventPublisher.publishEvent(new RegCustomerEvent(customer));
    }

}

4.消息事件監(jiān)聽器

package com.ljv.chat.event_;

import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Component;
import org.springframework.transaction.event.TransactionPhase;
import org.springframework.transaction.event.TransactionalEventListener;

/**
 * fileName:TranscationMessageListener
 * description: 消息事件監(jiān)聽器
 * author: LJV
 * createTime:2022/8/19 15:04
 * version:1.0.0
 */
@Component
@Slf4j
public class TranscationMessageListener {

    /***
     * @description 本地事務(wù)監(jiān)聽事件瘩蚪,事務(wù)完成后妓柜,發(fā)布一條推送訂單給司機(jī)的MQTT消息
     * @author 朱孝恒(javazhuxiaoheng @ 163.com)
     * @date 2022-03-17
     * @param regCustomerEvent 消息事件主題
     */
    @Async  //如果使用該異步注解勋又,則需要 @EnableAsync在主類
    @TransactionalEventListener(phase = TransactionPhase.AFTER_COMMIT, fallbackExecution = true)
    public void pushCustomer(RegCustomerEvent regCustomerEvent) {
        log.info("freightSendEvent: {}", regCustomerEvent);
        //業(yè)務(wù)邏輯
        System.out.println("---事件開始執(zhí)行---");
    }
}

5.工具類

package com.ljv.chat.event_;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.stereotype.Component;

/**
 * spring工具類 方便在非spring管理環(huán)境中獲取bean
 *
 * @author hupengnan
 */
@Component
public final class SpringUtils implements BeanFactoryPostProcessor
{
    /** Spring應(yīng)用上下文環(huán)境 */
    private static ConfigurableListableBeanFactory beanFactory;

    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException
    {
        SpringUtils.beanFactory = beanFactory;
    }

    /**
     * 獲取對象
     *
     * @param name
     * @return Object 一個以所給名字注冊的bean的實(shí)例
     * @throws BeansException
     *
     */
    @SuppressWarnings("unchecked")
    public static <T> T getBean(String name) throws BeansException
    {
        return (T) beanFactory.getBean(name);
    }

    /**
     * 獲取類型為requiredType的對象
     *
     * @param clz
     * @return
     * @throws BeansException
     *
     */
    public static <T> T getBean(Class<T> clz) throws BeansException
    {
        T result = (T) beanFactory.getBean(clz);
        return result;
    }

    /**
     * 如果BeanFactory包含一個與所給名稱匹配的bean定義赐写,則返回true
     *
     * @param name
     * @return boolean
     */
    public static boolean containsBean(String name)
    {
        return beanFactory.containsBean(name);
    }

    /**
     * 判斷以給定名字注冊的bean定義是一個singleton還是一個prototype挺邀。 如果與給定名字相應(yīng)的bean定義沒有被找到,將會拋出一個異常(NoSuchBeanDefinitionException)
     *
     * @param name
     * @return boolean
     * @throws NoSuchBeanDefinitionException
     *
     */
    public static boolean isSingleton(String name) throws NoSuchBeanDefinitionException
    {
        return beanFactory.isSingleton(name);
    }

    /**
     * @param name
     * @return Class 注冊對象的類型
     * @throws NoSuchBeanDefinitionException
     *
     */
    public static Class<?> getType(String name) throws NoSuchBeanDefinitionException
    {
        return beanFactory.getType(name);
    }

    /**
     * 如果給定的bean名字在bean定義中有別名泣矛,則返回這些別名
     *
     * @param name
     * @return
     * @throws NoSuchBeanDefinitionException
     *
     */
    public static String[] getAliases(String name) throws NoSuchBeanDefinitionException
    {
        return beanFactory.getAliases(name);
    }
}

6.服務(wù)層接口

package com.ljv.chat.event_.service;

/**
 * fileName:Customer
 * description:
 * author: LJV
 * createTime:2022/8/19 16:36
 * version:1.0.0
 */
public interface CustomerService {
    void getCustomer();
}

7.服務(wù)層實(shí)現(xiàn)類

package com.ljv.chat.event_.service;

import com.ljv.chat.event_.Customer;
import com.ljv.chat.event_.SpringUtils;
import com.ljv.chat.event_.TranscationEventPublisher;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import java.util.concurrent.TimeUnit;

/**
 * fileName:CustomerServiceImpl
 * description:
 * author: LJV
 * createTime:2022/8/19 16:38
 * version:1.0.0
 */
@Service
@Slf4j
public class CustomerServiceImpl implements CustomerService {

    @Override
    @Transactional
    public void getCustomer() {
        log.info("---業(yè)務(wù)開始執(zhí)行---");
        Customer customer = new Customer();
        customer.setId(1);
        customer.setName("qweqwe");

        log.info("aaa");
        SpringUtils.getBean(TranscationEventPublisher.class).publishCustomerEvent(customer);
        log.info("ccc");
//        Thread.sleep(1000);
        try {
            TimeUnit.SECONDS.sleep(10);//秒
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        log.info("---業(yè)務(wù)執(zhí)行結(jié)束---");
    }
}

8.控制層 進(jìn)行測試

package com.ljv.chat.event_;

import com.ljv.chat.event_.service.CustomerService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.concurrent.TimeUnit;

/**
 * fileName:Test
 * description:
 * author: LJV
 * createTime:2022/8/19 15:09
 * version:1.0.0
 */
@RestController
@RequestMapping("customer")
@Slf4j
public class TestController {

    @Autowired
    private CustomerService customerService;

    @GetMapping("getCustomer")
    public void getCustomer() throws InterruptedException {
        customerService.getCustomer();
    }

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末您朽,一起剝皮案震驚了整個濱河市换淆,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌讯屈,老刑警劉巖县习,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件谆趾,死亡現(xiàn)場離奇詭異叛本,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)跷叉,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進(jìn)店門吠勘,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事辫樱。” “怎么了鸡挠?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵搬男,是天一觀的道長。 經(jīng)常有香客問我备埃,道長,這世上最難降的妖魔是什么按脚? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任敦冬,我火速辦了婚禮,結(jié)果婚禮上堪遂,老公的妹妹穿的比我還像新娘萌庆。我一直安慰自己,他們只是感情好踊兜,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著于游,像睡著了一般。 火紅的嫁衣襯著肌膚如雪倾剿。 梳的紋絲不亂的頭發(fā)上蚌成,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天,我揣著相機(jī)與錄音芹缔,去河邊找鬼。 笑死最欠,一個胖子當(dāng)著我的面吹牛惩猫,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播轧房,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼奶镶,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了实辑?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤摄乒,失蹤者是張志新(化名)和其女友劉穎残黑,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體梨水,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡疫诽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年旦委,在試婚紗的時候發(fā)現(xiàn)自己被綠了雏亚。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡查辩,死狀恐怖网持,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情功舀,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布遣铝,位于F島的核電站莉擒,受9級特大地震影響瘫絮,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜麦萤,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一壮莹、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧命满,春花似錦、人聲如沸胶台。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽铸磅。三九已至杭朱,卻和暖如春吹散,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背送浊。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留唁桩,地道東北人耸棒。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像单山,于是被迫代替她去往敵國和親幅疼。 傳聞我的和親對象是個殘疾皇子米奸,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容