解决mq消费者消息接收成功,消费异常Cannot determine response destination

后台报错如下:

Failed to send reply with payload [主题消息接收成功!
Message=555]; nested exception is javax.jms.InvalidDestinationException: Cannot determine response destination: Request message does not contain reply-to destination, and no default response destination set.

发生异常的代码如下:

@JmsListener(destination = "${spring.activemq.cpe-topic-name}", containerFactory = "topicListener")
    
    public String consumer2(String str) {
        return "主题消息接收成功!\n" +"Message="+ str;
    }

原因是消费者进行消息接收的时候,不能有返回值

参考了网上的方案说:

如果需要返回值,可添加@SendTo注解解决,如果不想加此注解,就必须为void

但是测试发现无效,会无限进行消费(暂未排查原因)

所以最终改为

public void consumer1(String str) {
        System.out.println("1主题消息接收成功!\n" +"Message="+ str);
//        return "主题消息接收成功!\n" +"Message="+ str;
    }

最后成功消费

你可能感兴趣的:(java,开发语言)