|
@@ -4,8 +4,13 @@ import com.alibaba.fastjson.JSON;
|
|
|
import com.pj.api.dto.PaymentDto;
|
|
|
import com.pj.api.dto.PaymentTwoDto;
|
|
|
import com.pj.dto.DataDto;
|
|
|
+import com.pj.rabbitmqone.RabbitMQOne;
|
|
|
+import com.pj.rabbitmqtwo.RabbitMQTwo;
|
|
|
+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
|
|
@@ -17,7 +22,7 @@ public class PaymentService {
|
|
|
|
|
|
public void testSend(DataDto dataDto) {
|
|
|
System.out.println("开始发送----------\n"+dataDto.toString());
|
|
|
- // amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
+ amqpTemplate.convertAndSend(RabbitMQOne.TEST_SEND_QUEUE, dataDto);
|
|
|
System.out.println("结束发送----------");
|
|
|
}
|
|
|
|
|
@@ -33,11 +38,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = "";
|
|
|
- dataDto.setData(encryptCBC);
|
|
|
+ //String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQOne.ACC_KEY);
|
|
|
+ dataDto.setData(jsonString);
|
|
|
|
|
|
//mq发送信息
|
|
|
-// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
+ amqpTemplate.convertAndSend(RabbitMQOne.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|
|
@@ -53,11 +58,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = "";
|
|
|
- dataDto.setData(encryptCBC);
|
|
|
+ //String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQOne.ACC_KEY);
|
|
|
+ dataDto.setData(jsonString);
|
|
|
|
|
|
//mq发送信息
|
|
|
-// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
+ amqpTemplate.convertAndSend(RabbitMQOne.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|
|
@@ -73,11 +78,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = "";
|
|
|
- dataDto.setData(encryptCBC);
|
|
|
+ //String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQOne.ACC_KEY);
|
|
|
+ dataDto.setData(jsonString);
|
|
|
|
|
|
//mq发送信息
|
|
|
-// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
+ amqpTemplate.convertAndSend(RabbitMQOne.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|
|
@@ -93,11 +98,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC ="";
|
|
|
- dataDto.setData(encryptCBC);
|
|
|
+ //String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQTwo.ACC_KEY);
|
|
|
+ dataDto.setData(jsonString);
|
|
|
|
|
|
//mq发送信息
|
|
|
-// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
+ amqpTemplate.convertAndSend(RabbitMQTwo.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|
|
@@ -113,11 +118,11 @@ public class PaymentService {
|
|
|
DataDto dataDto = new DataDto();
|
|
|
//报文加密
|
|
|
String jsonString = JSON.toJSONString(xml);
|
|
|
- String encryptCBC = "AESUtil.encryptCBC(jsonString, RabbitMQFactory.ACC_KEY)";
|
|
|
- dataDto.setData(encryptCBC);
|
|
|
+ //String encryptCBC = AESUtil.encryptCBC(jsonString, RabbitMQTwo.ACC_KEY);
|
|
|
+ dataDto.setData(jsonString);
|
|
|
|
|
|
//mq发送信息
|
|
|
-// amqpTemplate.convertAndSend(RabbitMQFactory.TEST_SEND_QUEUE, dataDto);
|
|
|
+ amqpTemplate.convertAndSend(RabbitMQTwo.TEST_SEND_QUEUE, dataDto);
|
|
|
log.info("send mq msg finish:{}", JSON.toJSONString(xml));
|
|
|
}
|
|
|
|