|
|
@ -3,6 +3,12 @@ package com.epmet.opendata.mq.listener; |
|
|
|
import com.epmet.commons.tools.distributedlock.DistributedLock; |
|
|
|
import com.epmet.commons.tools.exception.ExceptionUtils; |
|
|
|
import com.epmet.commons.tools.exception.RenException; |
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
import com.epmet.commons.tools.utils.SpringContextUtils; |
|
|
|
import com.epmet.constant.MQUserPropertys; |
|
|
|
import com.epmet.dto.form.SystemMsgFormDTO; |
|
|
|
import com.epmet.feign.EpmetMessageOpenFeignClient; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.apache.rocketmq.client.consumer.listener.ConsumeConcurrentlyContext; |
|
|
|
import org.apache.rocketmq.client.consumer.listener.ConsumeConcurrentlyStatus; |
|
|
|
import org.apache.rocketmq.client.consumer.listener.MessageListenerConcurrently; |
|
|
@ -11,6 +17,7 @@ import org.redisson.api.RLock; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
|
|
|
|
import javax.annotation.PostConstruct; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
@ -22,8 +29,15 @@ public class OpenDataStaffChangeEventListener implements MessageListenerConcurre |
|
|
|
|
|
|
|
private Logger logger = LoggerFactory.getLogger(getClass()); |
|
|
|
|
|
|
|
private EpmetMessageOpenFeignClient messageOpenFeignClient; |
|
|
|
|
|
|
|
@Override |
|
|
|
public ConsumeConcurrentlyStatus consumeMessage(List<MessageExt> msgs, ConsumeConcurrentlyContext context) { |
|
|
|
|
|
|
|
if (messageOpenFeignClient == null) { |
|
|
|
messageOpenFeignClient = SpringContextUtils.getBean(EpmetMessageOpenFeignClient.class); |
|
|
|
} |
|
|
|
|
|
|
|
try { |
|
|
|
msgs.forEach(msg -> consumeMessage(msg)); |
|
|
|
} catch (Exception e) { |
|
|
@ -38,8 +52,11 @@ public class OpenDataStaffChangeEventListener implements MessageListenerConcurre |
|
|
|
// tags为SystemMessageType.java中的项,为具体的操作,此处拿到tags,判断是创建还是变更,来做响应的后续操作即可
|
|
|
|
String msg = new String(messageExt.getBody()); |
|
|
|
String tags = messageExt.getTags(); |
|
|
|
String pendingMsgLabel = messageExt.getUserProperty(MQUserPropertys.PENDING_MSG_LABEL); |
|
|
|
|
|
|
|
logger.info("【开放数据事件监听器】-工作人员信息变更-收到消息内容:{}, 操作:{}", msg, tags); |
|
|
|
//messageExt.propert
|
|
|
|
|
|
|
|
logger.info("【开放数据事件监听器】-工作人员信息变更-收到消息内容:{}, 操作:{}, pendingMsgLabel:{}", msg, tags, pendingMsgLabel); |
|
|
|
|
|
|
|
DistributedLock distributedLock = null; |
|
|
|
RLock lock = null; |
|
|
@ -47,6 +64,7 @@ public class OpenDataStaffChangeEventListener implements MessageListenerConcurre |
|
|
|
//distributedLock = SpringContextUtils.getBean(DistributedLock.class);
|
|
|
|
//lock = distributedLock.getLock(String.format("lock:open_data_staff:%s", staffId),
|
|
|
|
// 30L, 30L, TimeUnit.SECONDS);
|
|
|
|
|
|
|
|
} catch (RenException e) { |
|
|
|
// 如果是我们手动抛出的异常,说明在业务可控范围内。目前不需要MQ重试
|
|
|
|
logger.error("【开放数据事件监听器】-工作人员信息变更-初始化客户组织失败:".concat(ExceptionUtils.getErrorStackTrace(e))); |
|
|
@ -57,5 +75,31 @@ public class OpenDataStaffChangeEventListener implements MessageListenerConcurre |
|
|
|
} finally { |
|
|
|
//distributedLock.unLock(lock);
|
|
|
|
} |
|
|
|
|
|
|
|
// 应答mq消息(调用message服务的应答api)
|
|
|
|
if (StringUtils.isNotBlank(pendingMsgLabel)) { |
|
|
|
try { |
|
|
|
ackMqMsg(pendingMsgLabel); |
|
|
|
} catch (Exception e) { |
|
|
|
logger.error("【开放数据事件监听器】-应答mq消息失败:{}", ExceptionUtils.getErrorStackTrace(e)); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @description 应答mq消息 |
|
|
|
* |
|
|
|
* @param pendingMsgLabel |
|
|
|
* @return |
|
|
|
* @author wxz |
|
|
|
* @date 2021.10.14 16:32:32 |
|
|
|
*/ |
|
|
|
private void ackMqMsg(String pendingMsgLabel) { |
|
|
|
SystemMsgFormDTO form = new SystemMsgFormDTO(); |
|
|
|
form.setPendingMsgLabel(pendingMsgLabel); |
|
|
|
Result result = messageOpenFeignClient.ackSystemMsgByMQ(form); |
|
|
|
if (!result.success()) { |
|
|
|
logger.error("调用Message服务应答MQ消息失败:{}", result.getMsg()); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|