中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot怎么整合ActiveMQ實現秒殺隊列

發布時間:2022-03-03 15:45:27 來源:億速云 閱讀:199 作者:iii 欄目:web開發

本文小編為大家詳細介紹“SpringBoot怎么整合ActiveMQ實現秒殺隊列”,內容詳細,步驟清晰,細節處理妥當,希望這篇“SpringBoot怎么整合ActiveMQ實現秒殺隊列”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

前言

在實際生產環境中中,通常生產者和消費者會是兩個獨立的應用,這樣才能通過消息隊列實現了服務解耦和廣播。因為此項目僅是一個案例,為了方便期間,生產和消費定義在了同一個項目中。

基礎配置

pom.xml 添加依賴:

<!-- activemq -->

<dependency>

 <groupId>org.springframework.boot</groupId>

 <artifactId>spring-boot-starter-activemq</artifactId>

</dependency>

application.properties 基礎配置:

# activemq 基礎配置

#spring.activemq.broker-url=tcp://47.94.232.109:61616

# 生產環境設置密碼

#spring.activemq.user=admin

#spring.activemq.password=123456

#spring.activemq.in-memory=true

#spring.activemq.pool.enabled=false

項目集成

定義生產者:

import javax.jms.Destination;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.jms.core.JmsMessagingTemplate;

import org.springframework.stereotype.Component;

@Component

public class ActiveMQSender {

 @Autowired

 private JmsMessagingTemplate jmsTemplate; 

 /*

 * 發送消息,destination是發送到的隊列,message是待發送的消息

 */

 public void sendChannelMess(Destination destination, final String message){

 jmsTemplate.convertAndSend(destination, message);

 }

}

定義消費者:

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.jms.annotation.JmsListener;

import org.springframework.stereotype.Service;

import com.itstyle.seckill.common.entity.Result;

import com.itstyle.seckill.common.enums.SeckillStatEnum;

import com.itstyle.seckill.common.redis.RedisUtil;

import com.itstyle.seckill.common.webSocket.WebSocketServer;

import com.itstyle.seckill.service.ISeckillService;

@Service

public class ActiveMQConsumer {

  @Autowired

 private ISeckillService seckillService;

 @Autowired

 private RedisUtil redisUtil; 

 // 使用JmsListener配置消費者監聽的隊列,其中text是接收到的消息

 @JmsListener(destination = "seckill.queue")

 public void receiveQueue(String message) {

 //收到通道的消息之后執行秒殺操作(超賣)

 String[] array = message.split(";"); 

 Result result = seckillService.startSeckilDBPCC_TWO(Long.parseLong(array[0]), Long.parseLong(array[1]));

 if(result.equals(Result.ok(SeckillStatEnum.SUCCESS))){

 WebSocketServer.sendInfo(array[0].toString(), "秒殺成功");//推送給前臺

 }else{

 WebSocketServer.sendInfo(array[0].toString(), "秒殺失敗");//推送給前臺

 redisUtil.cacheValue(array[0], "ok");//秒殺結束

 }

 }

}

測試案例:

@ApiOperation(value="秒殺五(ActiveMQ分布式隊列)",nickname="科幫網")

@PostMapping("/startActiveMQQueue")

public Result startActiveMQQueue(long seckillId){

 seckillService.deleteSeckill(seckillId);

 final long killId = seckillId;

 LOGGER.info("開始秒殺五");

 for(int i=0;i<1000;i++){

 final long userId = i;

 Runnable task = new Runnable() {

 @Override

 public void run() {

 if(redisUtil.getValue(killId+"")==null){

 Destination destination = new ActiveMQQueue("seckill.queue");

 //思考如何返回給用戶信息ws

 activeMQSender.sendChannelMess(destination,killId+";"+userId);

 }else{

 //秒殺結束

 }

 }

 };

 executor.execute(task);

 }

 try {

 Thread.sleep(10000);

 redisUtil.cacheValue(killId+"", null);

 Long seckillCount = seckillService.getSeckillCount(seckillId);

 LOGGER.info("一共秒殺出{}件商品",seckillCount);

 } catch (InterruptedException e) {

 e.printStackTrace();

 }

 return Result.ok();

}

注意事項

spring-boot-starter-activemq 依賴即可默認采用內嵌的 ActiveMQ,這個跟 elasticsearch 是一樣的,測試的小伙伴可以不用安裝,注釋掉相關參數,使用默認即可。

如果自行安裝 ActiveMQ 記得配置防火墻/安全組,配置web訪問密碼以及連接密碼。

在生產環境下盡量還是采用外部 activemq 服務,提高擴展性、穩定性、可維護性。

讀到這里,這篇“SpringBoot怎么整合ActiveMQ實現秒殺隊列”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凤台县| 洪泽县| 喜德县| 镇江市| 苗栗市| 栾川县| 大港区| 肥城市| 达日县| 万全县| 桐乡市| 祁东县| 小金县| 旺苍县| 库尔勒市| 岳西县| 遂川县| 礼泉县| 丁青县| 西乡县| 芒康县| 兰考县| 宝山区| 巴林右旗| 游戏| 大理市| 周宁县| 道真| 许昌市| 澜沧| 阳春市| 高淳县| 安龙县| 法库县| 平远县| 西城区| 阳东县| 洱源县| 临潭县| 林西县| 绍兴县|