gpt4 book ai didi

java - io.iron.ironmq.HTTPException : Not found (IronMQ JAVA)

转载 作者:行者123 更新时间:2023-12-01 12:20:28 31 4
gpt4 key购买 nike

我正在尝试用java做一个简单的应用程序,从IronMQ发送和接收消息,但是当我尝试推送消息或获取消息或清除队列时,java向我显示此错误:

Exception in thread "main" io.iron.ironmq.HTTPException: Not found
at io.iron.ironmq.Client.singleRequest(Client.java:151)
at io.iron.ironmq.Client.request(Client.java:89)
at io.iron.ironmq.Client.post(Client.java:78)
at io.iron.ironmq.Queue.clear(Queue.java:174)

这是配置代码:

public void send_Message() throws IOException{
Client client = new Client(projectId, token, Cloud.ironAWSUSEast);
Queue queue = client.queue("Random");
String body = "Hello, IronMQ!";
int timeout = 30;
int delay = 0;
int expiresIn = 0;
String messageId = queue.push(body, timeout, delay, expiresIn);
}

感谢您的帮助! :)

最佳答案

我在错误日志中看到,该问题出在另一段代码中。具体来说,异常为at io.iron.ironmq.Queue.clear(Queue.java:174)。看来,您尝试清除不存在的队列。它会引发异常,因为在这种情况下 IronMQ 返回 HTTP 404。

关于java - io.iron.ironmq.HTTPException : Not found (IronMQ JAVA),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26696471/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com