|
|
|
@ -7,6 +7,7 @@ import com.glxp.api.config.rabbit.TopicRabbitConfig;
|
|
|
|
|
import com.glxp.api.entity.trace.MqTaskDelayMessage;
|
|
|
|
|
import com.glxp.api.entity.trace.MqTraceMessage;
|
|
|
|
|
import com.glxp.api.util.DateUtil;
|
|
|
|
|
import com.glxp.api.util.JsonUtils;
|
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
|
import org.springframework.amqp.core.MessageProperties;
|
|
|
|
|
import org.springframework.amqp.rabbit.core.RabbitTemplate;
|
|
|
|
@ -27,7 +28,8 @@ public class RabbitPushService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse send(MqTraceMessage mqTraceMessage) {
|
|
|
|
|
rabbitTemplate.convertAndSend(TopicRabbitConfig.TRACE_TOPIC_EXCHANGE, TopicRabbitConfig.trace, mqTraceMessage);
|
|
|
|
|
|
|
|
|
|
rabbitTemplate.convertAndSend(TopicRabbitConfig.TRACE_TOPIC_EXCHANGE, TopicRabbitConfig.trace, JsonUtils.toJsonString(mqTraceMessage));
|
|
|
|
|
return ResultVOUtils.success("发送成功");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|