|
@@ -1,33 +1,18 @@
|
|
package org.jeecg.modules.api;
|
|
package org.jeecg.modules.api;
|
|
|
|
|
|
-import cn.hutool.core.util.ObjectUtil;
|
|
|
|
import com.google.common.base.Strings;
|
|
import com.google.common.base.Strings;
|
|
import com.rabbitmq.client.Channel;
|
|
import com.rabbitmq.client.Channel;
|
|
-import lombok.SneakyThrows;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler;
|
|
import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler;
|
|
-import org.jeecg.boot.starter.rabbitmq.event.EventObj;
|
|
|
|
-import org.jeecg.boot.starter.rabbitmq.event.JeecgBusEventHandler;
|
|
|
|
import org.jeecg.boot.starter.rabbitmq.listenter.MqListener;
|
|
import org.jeecg.boot.starter.rabbitmq.listenter.MqListener;
|
|
import org.jeecg.common.annotation.RabbitComponent;
|
|
import org.jeecg.common.annotation.RabbitComponent;
|
|
import org.jeecg.common.base.BaseMap;
|
|
import org.jeecg.common.base.BaseMap;
|
|
import org.jeecg.modules.api.imf.msg.ImfMsg;
|
|
import org.jeecg.modules.api.imf.msg.ImfMsg;
|
|
import org.jeecg.modules.api.imf.msg.ImfMsgUtil;
|
|
import org.jeecg.modules.api.imf.msg.ImfMsgUtil;
|
|
-import org.jeecg.modules.utils.ConversionUtil;
|
|
|
|
import org.springframework.amqp.rabbit.annotation.RabbitListener;
|
|
import org.springframework.amqp.rabbit.annotation.RabbitListener;
|
|
import org.springframework.amqp.support.AmqpHeaders;
|
|
import org.springframework.amqp.support.AmqpHeaders;
|
|
import org.springframework.context.annotation.Profile;
|
|
import org.springframework.context.annotation.Profile;
|
|
import org.springframework.messaging.handler.annotation.Header;
|
|
import org.springframework.messaging.handler.annotation.Header;
|
|
-import org.springframework.stereotype.Component;
|
|
|
|
-import org.w3c.dom.Document;
|
|
|
|
-import org.xml.sax.InputSource;
|
|
|
|
-
|
|
|
|
-import javax.xml.parsers.DocumentBuilderFactory;
|
|
|
|
-import javax.xml.xpath.XPath;
|
|
|
|
-import javax.xml.xpath.XPathConstants;
|
|
|
|
-import javax.xml.xpath.XPathFactory;
|
|
|
|
-import java.io.StringReader;
|
|
|
|
-import java.nio.charset.StandardCharsets;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
* @author 王葆权
|
|
* @author 王葆权
|
|
@@ -38,14 +23,14 @@ import java.nio.charset.StandardCharsets;
|
|
*/
|
|
*/
|
|
@Profile("local")
|
|
@Profile("local")
|
|
@Slf4j
|
|
@Slf4j
|
|
-@RabbitComponent(value = "Test3BusEventListener")
|
|
|
|
-public class Test3BusEvent extends BaseRabbiMqHandler<Object> {
|
|
|
|
|
|
+@RabbitComponent(value = "AirportBusEventListener")
|
|
|
|
+public class AirportBusEvent extends BaseRabbiMqHandler<Object> {
|
|
|
|
|
|
- public Test3BusEvent() {
|
|
|
|
- System.out.println("¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥Test3BusEvent消息总栈事件创建了¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥");
|
|
|
|
|
|
+ public AirportBusEvent() {
|
|
|
|
+ System.out.println("¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥AirportBusEvent消息总栈事件创建了¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥");
|
|
}
|
|
}
|
|
|
|
|
|
- @RabbitListener(queues = "Test3HandlerEvent")
|
|
|
|
|
|
+ @RabbitListener(queues = "acdmMsgLocalHandlerEvent")
|
|
public void onMessage(BaseMap baseMap, Channel channel, @Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag) {
|
|
public void onMessage(BaseMap baseMap, Channel channel, @Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag) {
|
|
super.onMessage( baseMap, deliveryTag, channel, new MqListener<BaseMap>() {
|
|
super.onMessage( baseMap, deliveryTag, channel, new MqListener<BaseMap>() {
|
|
//@SneakyThrows
|
|
//@SneakyThrows
|