用于Grails抛出UnknownHostException的RabbitMq插件

时间:2012-02-19 18:44:10

标签: grails rabbitmq grails-plugin grails-2.0 grails-plugin-rabbitmq

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

Class:   java.net.UnknownHostException
Message: placeholder

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]

1 个答案:

答案 0 :(得分:0)

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

希望它有所帮助。 Kulveer Singh