5.rabbitmq持久化

rabbitmq持久化

队列的持久化

队列的持久化需要我们在声明的时候指定其持久化

  • 使用durable=true来持久化队列
/**
 * 队列的持久化
 */
public class QueuePersistence {

    public static void main(String[] args) throws IOException {
        Channel channel = RabbitUtil.getChannel();
        //队列的持久化
        boolean durable = true;
        channel.queueDeclare(QueueNames.ACK_QUEUE,durable,false,false,null);
    }
}

持久化队列之后,发现管理台中这个队列

在这里插入图片描述

重启rabbitmq server之后发现队列依然存在

消息的持久化

消息的持久化需要我们在消息生产的时候指定其持久化

  • 使用MessageProperties.PERSISTENT_TEXT_PLAIN
/**
 * 消息的持久化
 */
public class MsgPersistence {
    public static void main(String[] args) throws IOException {
        Channel channel = RabbitUtil.getChannel();
        //队列的持久化
        boolean durable = true;
        channel.queueDeclare(QueueNames.ACK_QUEUE,durable,false,false,null);
        String message  =  "this is a message";
        /**
         * MessageProperties.PERSISTENT_TEXT_PLAIN :消息持久化
         */
        channel.basicPublish("",QueueNames.ACK_QUEUE, MessageProperties.PERSISTENT_TEXT_PLAIN,message.getBytes(StandardCharsets.UTF_8));
    }
}

你可能感兴趣的:(rabbitmq,java-rabbitmq,rabbitmq,java)