修改报警消息
parent
869f4391a2
commit
5a6f892ce6
|
@ -1,35 +1,35 @@
|
||||||
//package com.god.base.server.consumer;
|
package com.god.base.server.consumer;
|
||||||
//
|
|
||||||
//import lombok.extern.java.Log;
|
import lombok.extern.java.Log;
|
||||||
//import lombok.extern.log4j.Log4j;
|
import lombok.extern.log4j.Log4j;
|
||||||
//import lombok.extern.log4j.Log4j2;
|
import lombok.extern.log4j.Log4j2;
|
||||||
//import org.springframework.amqp.rabbit.annotation.Queue;
|
import org.springframework.amqp.rabbit.annotation.Queue;
|
||||||
//import org.springframework.amqp.rabbit.annotation.RabbitListener;
|
import org.springframework.amqp.rabbit.annotation.RabbitListener;
|
||||||
//import org.springframework.amqp.rabbit.annotation.RabbitListeners;
|
import org.springframework.amqp.rabbit.annotation.RabbitListeners;
|
||||||
//import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
//
|
|
||||||
//import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
//
|
|
||||||
///**
|
/**
|
||||||
// * Description:
|
* Description:
|
||||||
// *
|
*
|
||||||
// * @Author: sun-cool-boy
|
* @Author: sun-cool-boy
|
||||||
// * @Date: 2023/11/29
|
* @Date: 2023/11/29
|
||||||
// * @info:
|
* @info:
|
||||||
// */
|
*/
|
||||||
//@Component
|
@Component
|
||||||
//@Log4j2
|
@Log4j2
|
||||||
//public class RabbitConsumer {
|
public class RabbitConsumer {
|
||||||
//
|
|
||||||
// @RabbitListener(queuesToDeclare = {@Queue("OUT_FENCE")})
|
@RabbitListener(queuesToDeclare = {@Queue("OUT_FENCE")})
|
||||||
// public void one(String msg){
|
public void one(String msg){
|
||||||
// log.info("监听到消息:{} , 队列名:{}",msg,"OUT_FENCE");
|
log.info("监听到消息:{} , 队列名:{},车辆已经驶入围栏内~~~~~~",msg,"OUT_FENCE");
|
||||||
// System.out.println(msg);
|
System.out.println(msg);
|
||||||
// }
|
}
|
||||||
//
|
|
||||||
// @RabbitListener(queuesToDeclare = {@Queue("IN_FENCE")})
|
@RabbitListener(queuesToDeclare = {@Queue("IN_FENCE")})
|
||||||
// public void two(String msg){
|
public void two(String msg){
|
||||||
// log.info("监听到消息:{} , 队列名:{}",msg,"IN_FENCE");
|
log.info("监听到消息:{} , 队列名:{},车辆已经驶出围栏外~~~~~~",msg,"IN_FENCE");
|
||||||
// System.out.println(msg);
|
System.out.println(msg);
|
||||||
// }
|
}
|
||||||
//}
|
}
|
||||||
|
|
|
@ -22,22 +22,6 @@ spring:
|
||||||
# 共享配置
|
# 共享配置
|
||||||
shared-configs:
|
shared-configs:
|
||||||
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|
||||||
rabbitmq:
|
|
||||||
port: 5672
|
|
||||||
host: 10.100.1.5
|
|
||||||
username: guest
|
|
||||||
password: guest
|
|
||||||
#这个配置是保证提供者确保消息推送到交换机中,不管成不成功,都会回调
|
|
||||||
publisher-confirm-type: correlated
|
|
||||||
#保证交换机能把消息推送到队列中
|
|
||||||
publisher-returns: true
|
|
||||||
virtual-host: /
|
|
||||||
#这个配置是保证消费者会消费消息,手动确认
|
|
||||||
listener:
|
|
||||||
simple:
|
|
||||||
acknowledge-mode: manual
|
|
||||||
template:
|
|
||||||
mandatory: true
|
|
||||||
logging:
|
logging:
|
||||||
level:
|
level:
|
||||||
com.god.system.mapper: DEBUG
|
com.god.system.mapper: DEBUG
|
||||||
|
|
Loading…
Reference in New Issue