1

我正在使用带有 grails 2.0 的 rabbitmq 0.3.3 插件。我创建了一个没有交换的队列,当我尝试调用这个队列时,我得到了以下异常。

类:java.net.UnknownHostException
消息:占位符

22:            // it does for the other arguments. Since the code in that method
23:            // checks for String, we do the conversion manually.
24:            args = processArgs(args)
25:            ctx.rabbitTemplate.convertAndSend(*args)
26:        }
27:    }
28:


rabbitSend 'mailQueue', [personId:person.id]

4

1 回答 1

0

您运行此代码的服务器无法解析主机名,我建议您在具有 IP 地址的系统上的 host.conf 文件中添加主机名。或尝试使用 IP 地址。

希望能帮助到你。库尔维尔·辛格

于 2012-04-03T20:03:54.490 回答