RbbitMQReceiver

package com.bootdo.gi.uitl;

import com.alibaba.fastjson.JSONObject;
import com.bootdo.gi.domain.HealthDO;
import com.bootdo.gi.service.HealthService;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;

import javax.annotation.Resource;

@Transactional
@Component
public class Receiver {
@Resource
private RedisConfig redisConfig;
@Autowired
HealthService healthService;
@RabbitListener(queues = “log”)
public String processMessage1(String msg) {
System.out.println(Thread.currentThread().getName() + " 接收到来自hello.log的消息:" + msg);
HealthDO healthDO = JSONObject.parseObject(msg, HealthDO.class);
System.out.println(healthDO);
System.out.println(healthDO.getImei());
String imei = healthDO.getImei();
String healthDo = “”;
if (redisConfig.get(imei)!=null){
redisConfig.del(imei);
}
redisConfig.set(imei,healthDo);
healthService.save(healthDO);
return “成功获取消息”;
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值