赞
踩
目录
- boolean durable=true;
- channel.queueDeclare(QUEUE_NAME,durable,false,false,null);
- String message="hello world!!!!";
拉到最底下,点击删除。
持久化队列的标识
channel.basicPublish("",QUEUE_NAME, MessageProperties.PERSISTENT_TEXT_PLAIN,message.getBytes());
- int prefetchCount=1;
- channel.basicQos(prefetchCount);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。