您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“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實現秒殺隊列”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。