spring发布和接收定制的事件(spring事件传播)

事件

Spring事件处理一般过程:

  • 定义Event类,继承org.springframework.context.ApplicationEvent。
  • 编写发布事件类Publisher,实现org.springframework.context.ApplicationContextAware接口。
  • 覆盖方法setApplicationContext(ApplicationContext applicationContext)和发布方法publish(Object obj)。
  • 定义时间监听类EventListener,实现ApplicationListener接口,实现方法onApplicationEvent(ApplicationEvent event)。

解释

Spring中提供了ApplicationEventPublisher接口作为事件发布者,并且ApplicationContext实现了这个接口,担当起了事件发布者这一角色

Spring中提供一些Aware相关的接口,BeanFactoryAware、 ApplicationContextAware、ResourceLoaderAware、ServletContextAware等等,其中最常用到的是ApplicationContextAware。实现ApplicationContextAware的Bean,在Bean被初始后,将会被注入ApplicationContext的实例。ApplicationContextAware提供了publishEvent()方法,实现Observer(观察者)设计模式的事件传播机,提供了针对Bean的事件传播功能。通过Application.publishEvent方法,我们可以将事件通知系统内所有的ApplicationListener。

实现 事件 ApplicationEvent

smslog

public class SmsLog implements Serializable {

    private static final long serialVersionUID = 1L;

    /**
     * id
     */
    @TableId(value = "sms_log_id", type = IdType.AUTO)
    private Integer smsLogId;
    /**
     * 手机号
     */
    private String userPhone;
    /**
     * 短信内容
     */
    private String smsText;
    /**
     * 短信类型 0 注册 1 登陆
     */
    private int smsType;

    /**
     * 发送时间
     */
    private Date sendTime;
    /**
     * 发送状态 0 未发送 1发送成功 2发送失败
     */
    private Integer sendStatus;

    public SmsLog() {
    }

    public SmsLog(String userPhone, String smsText, int smsType) {
        this.userPhone = userPhone;
        this.smsText = smsText;
        this.smsType = smsType;
    }

    public SmsLog(String userPhone, String smsText, SmsTypeEnum smsType) {
        this.userPhone = userPhone;
        this.smsText = smsText;
        this.smsType = smsType.ordinal();
    }

    public Integer getSmsLogId() {
        return smsLogId;
    }

    public void setSmsLogId(Integer smsLogId) {
        this.smsLogId = smsLogId;
    }

    public String getUserPhone() {
        return userPhone;
    }

    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }

    public String getSmsText() {
        return smsText;
    }

    public void setSmsText(String smsText) {
        this.smsText = smsText;
    }

    public int getSmsType() {
        return smsType;
    }

    public void setSmsType(int smsType) {
        this.smsType = smsType;
    }

    public void setSmsTypeEnum(SmsTypeEnum smsType) {
        this.smsType = smsType.ordinal();
    }

    public Date getSendTime() {
        return sendTime;
    }

    public void setSendTime(Date sendTime) {
        this.sendTime = sendTime;
    }

    public Integer getSendStatus() {
        return sendStatus;
    }

    public void setSendStatus(Integer sendStatus) {
        this.sendStatus = sendStatus;
    }

}
public class SendSmsEvent extends ApplicationEvent {

    private static final long serialVersionUID = 5819199428179496870L;
    private SmsLog smsSource;
    private boolean persistent=true;// 短信是否持久化

    public SendSmsEvent(Object source) {
        super(source);
    }

    public SendSmsEvent(Object source, SmsLog sms) {
        super(source);
        this.smsSource = sms;
    }

    public static long getSerialversionuid() {
        return serialVersionUID;
    }

    public SmsLog getSmsSource() {
        return smsSource;
    }

    public boolean isPersistent() {
        return persistent;
    }

    /**
     * 设置短信是否持久化到库
     * 
     * @param persistent
     */
    public void setPersistent(boolean persistent) {
        this.persistent = persistent;
    }

}

实现 ApplicationContextAware接口

public final class SpringContextHolder implements ApplicationContextAware {

    private static ApplicationContext springContext;

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        SpringContextHolder.springContext = applicationContext;
    }
    
    /**
     * 返回spring上下文环境对象
     * 
     * @return ApplicationContext
     */
    public static ApplicationContext getSpringContext() {
        return springContext;
    }

 /**
     * 发布事件到spring
     * @param event
     */
    public static void pushEvent(ApplicationEvent event) {
        springContext.publishEvent(event);
    }
}

可选:
还可以在xml配置下方便使用

<bean id="springContext" class="com.ghgcn.cigarbox.support.SpringContextHolder"></bean>

实现ApplicationListener

@Component
public class SendSmsEventListener implements ApplicationListener<SendSmsEvent> {

    @Resource
    private ISmsLogService smsLogServiceImpl;

    private final Logger logger = LoggerFactory.getLogger(SendSmsEventListener.class);
    @Resource
    private ISmsSender yunPianSmsSender;

    /**
     * @param smsLog status 0成功,非0失败
     */
    @Override
    @Async
    public void onApplicationEvent(SendSmsEvent event) {
        SmsLog smsLog = event.getSmsSource();
        CallResult result = yunPianSmsSender.send(smsLog.getSmsText(), smsLog.getUserPhone());
        smsLog.setSendStatus(result.getStatus());
        smsLog.setSendTime(new Date());
        if (event.isPersistent()) {
            try {
                smsLogServiceImpl.save(smsLog);
            } catch (Exception e) {
                logger.error("发送短信出" + e.getMessage(), e);
            }
        }
    }

}

注解方式实现

事件

package com.ghgcn.event.service;

import org.springframework.context.ApplicationEvent;

public class DemoEvent extends ApplicationEvent {

    private String msg;

    public DemoEvent(Object source) {
        super(source);
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public DemoEvent(Object source, String msg) {
        super(source);
        this.msg = msg;
    }
}

发送者


@Component
public class DemoPulisher  {

    @Autowired
    ApplicationContext applicationContext;
    

    public void publish(ApplicationEvent applicationEvent){
        //applicationContext.publishEvent(applicationEvent);
        applicationContext.publishEvent(applicationEvent);
    }


}

配置

package com.ghgcn.event.service;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan(basePackages = {"com.ghgcn.event"})
public class EventConfig {


}

监听器

package com.ghgcn.event.service;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;

@Component
public class DemoEventListener implements ApplicationListener<DemoEvent> {
    private Logger logger = LoggerFactory.getLogger(DemoEventListener.class);



    @Override
    public void onApplicationEvent(DemoEvent event) {

        String msg=event.getMsg();
        logger.debug("onApplicationEvent   {}",event);
        logger.debug("onApplicationEvent   {}",event);
        logger.debug("onApplicationEvent   {}",event);
        logger.debug("onApplicationEvent   {}",event);
        logger.debug("onApplicationEvent   {}",event);
        logger.debug("onApplicationEvent   {}",event);
        logger.debug("onApplicationEvent   {}",event);

        logger.debug("onApplicationEvent   {}",msg);
        System.out.println("DemoEventListener   接收到的消息 "+event);
    }
}


测试

package com.ghgcn.event.test;

import com.ghgcn.event.service.DemoEvent;
import com.ghgcn.event.service.DemoPulisher;
import com.ghgcn.event.service.EventConfig;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

import java.util.Date;

public class EventTest {

    public  static  void main(String [] args){
        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(EventConfig.class);


        DemoPulisher demoPulisher = context.getBean(DemoPulisher.class);

        demoPulisher.publish(new DemoEvent(new Date(),"魂牵梦萦 "));

        context.close();
    }
}


结果

17:46:26.821 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Could not find key 'spring.liveBeansView.mbeanDomain' in any property source. Returning [null]
17:46:26.822 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'demoPulisher'
17:46:26.823 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'demoEventListener'
17:46:26.823 [main] DEBUG com.ghgcn.event.service.DemoEventListener - onApplicationEvent   DemoEvent{msg='魂牵梦萦 ', source=Thu Oct 26 17:46:26 CST 2017}
17:46:26.824 [main] DEBUG com.ghgcn.event.service.DemoEventListener - onApplicationEvent   DemoEvent{msg='魂牵梦萦 ', source=Thu Oct 26 17:46:26 CST 2017}
17:46:26.825 [main] DEBUG com.ghgcn.event.service.DemoEventListener - onApplicationEvent   DemoEvent{msg='魂牵梦萦 ', source=Thu Oct 26 17:46:26 CST 2017}
17:46:26.825 [main] DEBUG com.ghgcn.event.service.DemoEventListener - onApplicationEvent   DemoEvent{msg='魂牵梦萦 ', source=Thu Oct 26 17:46:26 CST 2017}
17:46:26.825 [main] DEBUG com.ghgcn.event.service.DemoEventListener - onApplicationEvent   DemoEvent{msg='魂牵梦萦 ', source=Thu Oct 26 17:46:26 CST 2017}
17:46:26.825 [main] DEBUG com.ghgcn.event.service.DemoEventListener - onApplicationEvent   DemoEvent{msg='魂牵梦萦 ', source=Thu Oct 26 17:46:26 CST 2017}
17:46:26.825 [main] DEBUG com.ghgcn.event.service.DemoEventListener - onApplicationEvent   DemoEvent{msg='魂牵梦萦 ', source=Thu Oct 26 17:46:26 CST 2017}
17:46:26.825 [main] DEBUG com.ghgcn.event.service.DemoEventListener - onApplicationEvent   魂牵梦萦 
DemoEventListener   接收到的消息 DemoEvent{msg='魂牵梦萦 ', source=Thu Oct 26 17:46:26 CST 2017}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,600评论 18 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,748评论 6 342
  • 考虑到写干货的时候,是否应该换个题目了,还是挺纠结的,但是既然就是个小白,写出来的也未必难以下咽,我就不改名字保持...
    泡芙在奶油嘴里阅读 234评论 1 2
  • 很多年以后 或许 我们还会有缘再见 那时 你变为了伛偻的老太太 我成为了满脸皱纹的老头 在生命的暮鼓声里 时光拭去...
    孤独的空心菜阅读 232评论 1 5
  • 2017.08.23 (因为马上要准备考研了,所以,这学期我的主要任务是:把自己的脸皮练的厚点。情绪稳定,感情稳定...
    4月的小猴子阅读 526评论 6 0