现在项目需要兼容rabbitmq,现在能发送消息了,但是监听消息有什么好的方法么?不想在afterJFinalStart ()里面添加while(true),能不能像springboot中那样有一个监听的注解类似 @RabbitListener(queues = QUEUE_NAME) 或者其他监听的方式
public void onStart() {
Thread thread = new Thread(() -> {
监听代码在此
});
thread.setDaemon(true);
thread.start();