|
@@ -1,28 +1,23 @@
|
|
|
package com.pj.task;
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
-import com.pj.api.dto.OrderDto;
|
|
|
import com.pj.api.dto.PaymentDto;
|
|
|
import com.pj.api.dto.PaymentTwoDto;
|
|
|
import com.pj.dto.DataDto;
|
|
|
-import com.pj.rabbitmq.RabbitMQ;
|
|
|
-import com.pj.utils.ht.AESUtil;
|
|
|
import com.pj.xml.MessageXML;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.springframework.amqp.core.AmqpTemplate;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
@Service
|
|
|
@Slf4j
|
|
|
public class PaymentService {
|
|
|
|
|
|
- @Autowired
|
|
|
- private AmqpTemplate amqpTemplate;
|
|
|
+// @Autowired
|
|
|
+// private AmqpTemplate amqpTemplate;
|
|
|
|
|
|
public void testSend(DataDto dataDto) {
|
|
|
System.out.println("开始发送----------\n"+dataDto.toString());
|
|
|
- amqpTemplate.convertAndSend(RabbitMQ.TEST_SEND_QUEUE, dataDto);
|
|
|
+ // amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
System.out.println("结束发送----------");
|
|
|
}
|
|
|
|
|
@@ -38,11 +33,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQ.ACC_KEY);
|
|
|
+ String encryptCBC = "";
|
|
|
dataDto.setData(encryptCBC);
|
|
|
|
|
|
//mq发送信息
|
|
|
- amqpTemplate.convertAndSend(RabbitMQ.TEST_SEND_QUEUE, dataDto);
|
|
|
+// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|
|
@@ -58,11 +53,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQ.ACC_KEY);
|
|
|
+ String encryptCBC = "";
|
|
|
dataDto.setData(encryptCBC);
|
|
|
|
|
|
//mq发送信息
|
|
|
- amqpTemplate.convertAndSend(RabbitMQ.TEST_SEND_QUEUE, dataDto);
|
|
|
+// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|
|
@@ -78,11 +73,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQ.ACC_KEY);
|
|
|
+ String encryptCBC = "";
|
|
|
dataDto.setData(encryptCBC);
|
|
|
|
|
|
//mq发送信息
|
|
|
- amqpTemplate.convertAndSend(RabbitMQ.TEST_SEND_QUEUE, dataDto);
|
|
|
+// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|
|
@@ -98,11 +93,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQ.ACC_KEY);
|
|
|
+ String encryptCBC ="";
|
|
|
dataDto.setData(encryptCBC);
|
|
|
|
|
|
//mq发送信息
|
|
|
- amqpTemplate.convertAndSend(RabbitMQ.TEST_SEND_QUEUE, dataDto);
|
|
|
+// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|
|
@@ -118,11 +113,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQ.ACC_KEY);
|
|
|
+ String encryptCBC = "AESUtil.encryptCBC(jsonString, RabbitMQFactory.ACC_KEY)";
|
|
|
dataDto.setData(encryptCBC);
|
|
|
|
|
|
//mq发送信息
|
|
|
- amqpTemplate.convertAndSend(RabbitMQ.TEST_SEND_QUEUE, dataDto);
|
|
|
+// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|