您好,登錄后才能下訂單哦!
這篇文章主要講解了“Spring的事件機(jī)制知識點(diǎn)有哪些”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Spring的事件機(jī)制知識點(diǎn)有哪些”吧!
同步事件: 在一個(gè)線程里,按順序執(zhí)行業(yè)務(wù),做完一件事再去做下一件事。
異步事件: 在一個(gè)線程里,做一個(gè)事的同事,可以另起一個(gè)新的線程執(zhí)行另一件事,這樣兩件事可以同時(shí)執(zhí)行。
用一個(gè)例子來解釋同步事件和異步事件的使用場景,有時(shí)候一段完整的代碼邏輯,可能分為幾部分,拿最常見的注冊來說,假設(shè)完整流程是,1.點(diǎn)擊注冊->2.檢驗(yàn)信息并存庫->3.發(fā)送郵件通知->4.返回給用戶.代碼這么寫是正確,但不是最好的,缺點(diǎn)如下:
邏輯復(fù)雜,業(yè)務(wù)耦合,我們把校驗(yàn)數(shù)據(jù)并存庫和發(fā)送郵件寫到一個(gè)大的業(yè)務(wù)方法里了,發(fā)送郵件我們可以看做一個(gè)相對獨(dú)立的業(yè)務(wù)方法。
效率低,假設(shè)2和3分別需要1秒的時(shí)候,那么用戶在點(diǎn)擊注冊2秒后才能看到響應(yīng)。
同步事件可以解決上面第一個(gè)問題,我們把發(fā)郵件的方法獨(dú)立出來,放到事件里執(zhí)行,這樣注冊的這個(gè)方法就可以只做2操作,完成之后發(fā)布一個(gè)事件去執(zhí)行3,可以很好的解決業(yè)務(wù)耦合的問題.
異步事件可以完美解決以上兩個(gè)問題,注冊方法執(zhí)行2操作,執(zhí)行之后發(fā)布一個(gè)異步事件,另起一個(gè)線程執(zhí)行3操作,注冊方法所在的線程可直接返回給用戶,這樣不僅實(shí)現(xiàn)了業(yè)務(wù)解耦還提高了效率,用戶點(diǎn)擊注冊,1秒后就能看到響應(yīng).
Spring 事件發(fā)送監(jiān)聽涉及3個(gè)部分
ApplicationEvent:表示事件本身,自定義事件需要繼承該類,可以用來傳遞數(shù)據(jù),比如上述操作,我們需要將用戶的郵箱地址傳給事件監(jiān)聽器.
ApplicationEventPublisherAware :事件發(fā)送器,通過實(shí)現(xiàn)這個(gè)接口,來觸發(fā)事件.
ApplicationListener:事件監(jiān)聽器接口,事件的業(yè)務(wù)邏輯封裝在監(jiān)聽器里面.
接下來使用spring的異步事件機(jī)制來模擬上面的注冊流程.有配置文件和注解兩種方式。
使用配置文件的方式創(chuàng)建事件:
新建TestEvent:
public class TestEvent extends ApplicationEvent { private TestParam source; public TestEvent(TestParam source) { super(source); this.source = source; } } @Data public class TestParam { private String email; }
新建TestListener:
@Component public class TestListener implements ApplicationListener<TestEvent> { @Override public void onApplicationEvent(TestEvent testEvent) { TestParam param = (TestParam) testEvent.getSource(); System.out.println(".......開始......."); System.out.println("發(fā)送郵件:"+param.getEmail()); System.out.println(".......結(jié)束....."); } }
新建 EventPublisher:
@Component public class TestPublish implements ApplicationEventPublisherAware { private static ApplicationEventPublisher applicationEventPublisher; @Override public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) { TestPublish.applicationEventPublisher = applicationEventPublisher; } public static void publishEvent(ApplicationEvent communityArticleEvent) { applicationEventPublisher.publishEvent(communityArticleEvent); } }
spring-context.xml中添加:
<bean id="applicationEventAsyncMulticaster" class="org.springframework.context.event.SimpleApplicationEventMulticaster"> <property name="taskExecutor"> <bean class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor"> <property name="corePoolSize" value="5"/> <property name="keepAliveSeconds" value="3000"/> <property name="maxPoolSize" value="50"/> <property name="queueCapacity" value="200"/> </bean> </property> </bean>
注意:如果加<propery name="taskExecutor",則使用異步方式執(zhí)行,否則為同步方式
使用 @Async 需要在配置文件添加一下支持,線程池也是需要配置一下的
<!-- 開啟@AspectJ AOP代理 --> <aop:aspectj-autoproxy proxy-target-class="true"/> <!-- 任務(wù)執(zhí)行器 --> <task:executor id="executor" pool-size="10"/> <!--開啟注解調(diào)度支持 @Async --> <task:annotation-driven executor="executor" proxy-target-class="true"/>
TestListener中在方法中添加@Async
@Component public class TestListener implements ApplicationListener<TestEvent> { @Async @Override public void onApplicationEvent(TestEvent testEvent) { TestParam param = (TestParam) testEvent.getSource(); System.out.println(".......開始......."); System.out.println("發(fā)送郵件:"+param.getEmail()); System.out.println(".......結(jié)束....."); } }
Listener其實(shí)還可以做得更徹底一點(diǎn),使用注解@EventListener可代替實(shí)現(xiàn)ApplicationListener,原理是通過掃描這個(gè)注解來創(chuàng)建監(jiān)聽器并自動添加到ApplicationContext中.
新建自定義EventHandler:
@Component public class TestEventHandler { @Async @EventListener public void handleTestEvent(TestEvent testEvent) { TestParam param = (TestParam) testEvent.getSource(); System.out.println(".......開始......."); System.out.println("發(fā)送郵件:"+param.getEmail()); System.out.println(".......結(jié)束....."); } }
測試及控制臺的打印就不貼了,這里主要記錄一下具體的實(shí)現(xiàn)方法.
感謝各位的閱讀,以上就是“Spring的事件機(jī)制知識點(diǎn)有哪些”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Spring的事件機(jī)制知識點(diǎn)有哪些這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。