亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術(shù)文章
文章詳情頁

Java 延遲隊(duì)列的常用的實(shí)現(xiàn)方式

瀏覽:2日期:2022-08-14 18:36:00

延遲隊(duì)列的使用場景還比較多,例如:

1、超時(shí)未收到支付回調(diào),主動查詢支付狀態(tài);

2、規(guī)定時(shí)間內(nèi),訂單未支付,自動取消;

。。。

總之,但凡需要在未來的某個(gè)確定的時(shí)間點(diǎn)執(zhí)行檢查的場景中都可以用延遲隊(duì)列。

常見的手段主要有:定時(shí)任務(wù)掃描、RocketMQ延遲隊(duì)列、Java自動的延遲隊(duì)列、監(jiān)聽Redis Key過期等等

1. DelayQueue

首先,定義一個(gè)延遲任務(wù)

package com.cjs.example;import lombok.Data;import java.util.concurrent.Delayed;import java.util.concurrent.TimeUnit;/** * @author ChengJianSheng * @since 2021/3/18 */@Datapublic class DelayTask implements Delayed { private Long orderId; private long expireTime; public DelayTask(Long orderId, long expireTime) { this.orderId = orderId; this.expireTime = expireTime; } @Override public long getDelay(TimeUnit unit) { return expireTime - System.currentTimeMillis(); } @Override public int compareTo(Delayed o) { return (int) (getDelay(TimeUnit.MILLISECONDS) - o.getDelay(TimeUnit.MILLISECONDS)); }}

然后,定義一個(gè)管理類

package com.cjs.example;import lombok.extern.slf4j.Slf4j;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.CommandLineRunner;import org.springframework.stereotype.Component;import java.util.concurrent.DelayQueue;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;/** * @author ChengJianSheng * @since 2021/3/19 */@Slf4j@Componentpublic class DelayQueueManager implements CommandLineRunner { private DelayQueue<DelayTask> queue = new DelayQueue<>(); @Autowired private ParkOrderQueryHandler handler; @Override public void run(String... strings) throws Exception { ExecutorService executorService = Executors.newSingleThreadExecutor(); executorService.execute(new Runnable() { @Override public void run() { while (true) { try { DelayTask task = queue.take(); handler.handle(task); } catch (InterruptedException e) { e.printStackTrace(); } } } }); } public void put(DelayTask task) { queue.put(task); }}

插入任務(wù)

@Slf4j@Servicepublic class PayServiceImpl implements PayService { @Autowired private DelayQueueManager delayQueueManager; @Override public void pay() { delayQueueManager.put(new DelayTask(1, 15)); delayQueueManager.put(new DelayTask(2, 30)); delayQueueManager.put(new DelayTask(3, 60)); }}2. Redis Key過期回調(diào)

修改redis.conf文件

# bind 127.0.0.1 -::1protected-mode nonotify-keyspace-events Ex

Java 延遲隊(duì)列的常用的實(shí)現(xiàn)方式

[root@localhost redis-6.2.1]$ src/redis-server redis.conf <?xml version='1.0' encoding='UTF-8'?><project xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd'> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.4</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.example</groupId> <artifactId>demo0401</artifactId> <version>0.0.1-SNAPSHOT</version> <name>demo0401</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build></project>

RedisConfig.java

package com.example.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.data.redis.connection.RedisConnectionFactory;import org.springframework.data.redis.listener.RedisMessageListenerContainer;/** * @author ChengJianSheng * @since 2021/4/2 */@Configurationpublic class RedisConfig { @Bean public RedisMessageListenerContainer container(RedisConnectionFactory connectionFactory) { RedisMessageListenerContainer container = new RedisMessageListenerContainer(); container.setConnectionFactory(connectionFactory); return container; }}

創(chuàng)建一個(gè)監(jiān)聽類

package com.example.listener;import org.springframework.data.redis.connection.Message;import org.springframework.data.redis.listener.KeyExpirationEventMessageListener;import org.springframework.data.redis.listener.RedisMessageListenerContainer;import org.springframework.stereotype.Component;/** * @author ChengJianSheng * @since 2021/4/2 */@Componentpublic class MyRedisKeyExpirationListener extends KeyExpirationEventMessageListener { public MyRedisKeyExpirationListener(RedisMessageListenerContainer listenerContainer) { super(listenerContainer); } @Override public void onMessage(Message message, byte[] pattern) { String expiredKey = message.toString(); System.out.println('監(jiān)聽到Key: ' + expiredKey + ' 已過期'); }}3. RocketMQ

Java 延遲隊(duì)列的常用的實(shí)現(xiàn)方式

官方文檔:https://help.aliyun.com/document_detail/29549.htm

以上就是Java 延遲隊(duì)列的常用的實(shí)現(xiàn)方式的詳細(xì)內(nèi)容,更多關(guān)于Java 延遲隊(duì)列實(shí)現(xiàn)方式的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: Java
相關(guān)文章:
主站蜘蛛池模板: 精品在线播放 | 777奇米影视笫四色88me久久综合 | 色多多视频成人影院 | 亚洲国产成人久久一区www妖精 | 欧美高清视频www夜色资源网 | 亚洲精品色播一区二区 | 九九99久久精品在免费线bt | 未成人禁止视频高清在线观看 | 中文在线观看视频 | 黄色大片视频 | 国产午夜毛片一区二区三区 | 大伊香蕉在线观看视频 wap | 一级日韩 | 在线免费一区 | 国产乱视频在线观看播放 | 免费黄色一级毛片 | 国产第二页 | 国产一区二区在免费观看 | 伊人中文字幕在线观看 | 538prom在线 | 搞黄在线观看 | 一区二区免费视频 | 亚洲国产一区在线二区三区 | 韩日在线视频 | 一级黄色片欧美 | 91探花在线视频 | 欧美日韩一区二区三区在线 | 亚洲国产影视 | 亚洲三级影院 | 国产成人在线观看网站 | 免费观看欧美精品成人毛片能看的 | 91香蕉视频免费在线观看 | nnnwww在线观看视频 | wwwww色| 成人高清在线视频 | 精品视频免费在线 | 欧美啪啪精品 | 久久婷婷色一区二区三区 | 精选国产门事件福利在线观看 | 日本黄色免费看 | 国产1024观看免费视频 |