Administrator
2026-06-18 e167d6fb6001f8fc884afd11288fa431e607eb06
src/main/java/com/xcong/excoin/rabbit/producer/OrderProducer.java
@@ -107,7 +107,7 @@
     */
    public void sendPriceOperate(String content) {
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        System.out.println("发送价格操作:" + content + "==pid:" + correlationData.getId());
        log.info("发送价格操作 : {}==pid : {}", content, correlationData.getId());
        rabbitTemplate.convertAndSend(RabbitMqConfig.EXCHANGE_A, RabbitMqConfig.ROUTINGKEY_PRICEOPERATE, content, correlationData);
    }