Golang - RabbitMq:频道/连接未打开

时间:2016-04-12 17:05:44

标签: go rabbitmq

我是golang的新手,我想重构我的代码,以便rabbitmq初始化在另一个main函数中。所以我使用一个结构指针(包含所有启动的rabbitmq信息)并将其传递给send函数,但它告诉我:无法发布消息:异常(504)原因:"通道/连接未打开&# 34;

struct:

type RbmqConfig struct {
    q amqp.Queue
    ch *amqp.Channel
    conn *amqp.Connection
    rbmqErr error
}

init函数:

func initRabbitMq() *RbmqConfig {

    config := &RbmqConfig{}

    config.conn, config.rbmqErr = amqp.Dial("amqp://guest:guest@localhost:5672/")
    failOnError(config.rbmqErr, "Failed to connect to RabbitMQ")
    defer config.conn.Close()

    config.ch, config.rbmqErr = config.conn.Channel()
    failOnError(config.rbmqErr, "Failed to open a channel")
    defer config.ch.Close()

    config.q, config.rbmqErr = config.ch.QueueDeclare(
        "<my_queue_name>",
        true,   // durable
        false,   // delete when unused
        false,   // exclusive
        false,   // no-wait
        nil,     // arguments
    )
    failOnError(config.rbmqErr, "Failed to declare a queue")

    return config
}

主要:

config := initRabbitMq()

fmt.Println("queue name : ", config.q.Name)

sendMessage(config, <message_to_send>)

发送消息:

func sendMessage(config *RbmqConfig, <message_to_send>) {

    config.rbmqErr = config.ch.Publish(
        "",           // exchange
        config.q.Name,       // routing key
        false,        // mandatory
        false,
        amqp.Publishing{
            DeliveryMode: amqp.Persistent,
            ContentType:  "text/plain",
            Body:         []byte(<message_to_send>),
        })
    failOnError(config.rbmqErr, "Failed to publish a message")

如果有人有任何想法,那将非常有帮助。提前谢谢

1 个答案:

答案 0 :(得分:4)

init内,您编写了defer config.conn.Close(),该函数将在函数返回时执行。也就是说,只要init完成,您的连接就会关闭,从而导致未打开的连接。

您需要将连接关闭在main中,或者在某个您希望关闭的地方。