ActiveMQ
iteye_11213
这个作者很懒,什么都没留下…
展开
-
使用ActiveMQ发送接收队列(Queue)消息
Apache ActiveMQ is the most popular and powerful open source messaging and Integration Patterns provider. 下载 进入下载页面:http://activemq.apache.org/activemq-541-release.html,下载zip包 然后启动起来,windows下...2010-12-02 14:50:38 · 351 阅读 · 0 评论 -
ActiveMQ 持久化订阅
第一步 TopicPublisher publisher = session.createPublisher(topic); //设置订阅模式为持久化 publisher.setDeliveryMode(DeliveryMode.PERSISTENT); //设置持久化时间,默认为永不过期,方法参数为毫秒 publisher.setTimeToLive(60000); 第二...2010-12-02 15:39:10 · 192 阅读 · 0 评论