真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot怎么整合ActiveMQ實現(xiàn)秒殺隊列

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

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序制作、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了定南免費建站歡迎大家使用!

前言

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

基礎(chǔ)配置

pom.xml 添加依賴:

 org.springframework.boot

 spring-boot-starter-activemq

application.properties 基礎(chǔ)配置:

# activemq 基礎(chǔ)配置

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

# 生產(chǎn)環(huán)境設(shè)置密碼

#spring.activemq.user=admin

#spring.activemq.password=123456

#spring.activemq.in-memory=true

#spring.activemq.pool.enabled=false

項目集成

定義生產(chǎn)者:

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; 

 /*

 * 發(fā)送消息,destination是發(fā)送到的隊列,message是待發(fā)送的消息

 */

 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配置消費者監(jiān)聽的隊列,其中text是接收到的消息

 @JmsListener(destination = "seckill.queue")

 public void receiveQueue(String message) {

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

 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");//秒殺結(jié)束

 }

 }

}

測試案例:

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

@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{

 //秒殺結(jié)束

 }

 }

 };

 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 依賴即可默認(rèn)采用內(nèi)嵌的 ActiveMQ,這個跟 elasticsearch 是一樣的,測試的小伙伴可以不用安裝,注釋掉相關(guān)參數(shù),使用默認(rèn)即可。

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

在生產(chǎn)環(huán)境下盡量還是采用外部 activemq 服務(wù),提高擴展性、穩(wěn)定性、可維護性。

讀到這里,這篇“SpringBoot怎么整合ActiveMQ實現(xiàn)秒殺隊列”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享題目:SpringBoot怎么整合ActiveMQ實現(xiàn)秒殺隊列
標(biāo)題網(wǎng)址:http://weahome.cn/article/iihpji.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部