有没有办法在 JBoss 4.2.2 消息队列中重新发送过期消息?问题是他们超过了他们的重试数量,但现在问题已经解决了,有没有办法重新发送他们?
在 JBoss 3 中,它们只是可以移动的文本文件。既然它存储在数据库中,你怎么能做到呢?
看看Hermes JMS。它是一个用于浏览 JMS 队列和主题的开源工具。它可以重播最终出现在代理的无法投递队列中的消息。
这就是我最终做的事情:
Hashtable t = new Hashtable();
t.put(Context.PROVIDER_URL, "localhost:1099");
t.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
Context ctx = new InitialContext(t);
Queue q = (Queue) ctx.lookup("/queue/DLQ");
//----------------------------
ConnectionFactory cf = (ConnectionFactory) ctx.lookup("/ConnectionFactory");
Connection connection = cf.createConnection();
Session session = connection.createSession(true, 0);
//---------------------------------
MessageConsumer consumer = session.createConsumer(q);
connection.start();
SpyObjectMessage m;
Queue originialDestination = null;
//There can only be one in my case, but really you have to look it up every time.
MessageProducer producer = null;
while ((m = (SpyObjectMessage) consumer.receive(5000)) != null) {
Object o = m.getObject();
Date messageDate = new Date(m.getJMSTimestamp());
String originalQueue = m.getStringProperty("JBOSS_ORIG_DESTINATION");
if (originialDestination == null) {
originialDestination = (Queue) ctx.lookup("/queue/" +
originalQueue.substring(originalQueue.indexOf('.') + 1));
producer = session.createProducer(originialDestination);
}
producer.send(session.createObjectMessage((Serializable) o));
m.acknowledge();
}
//session.commit(); //Uncomment to make this real.
connection.close();
ctx.close();
注意:我为 CodeStreet 工作
我们的“ReplayService for JMS”产品正是为这个用例而构建的:搜索和检索以前发布的消息(n 次交付)- JMS 确实是为 1 次交付而设计的。
使用 ReplayService for JMS,您可以配置 WebLogic 记录以记录发布到您的主题或队列的所有消息。通过基于 Web 的 GUI,您可以搜索单个消息(通过子字符串、XPath 或 JMS 选择器),然后再次将它们重播到原始 JMS 目标。
有关详细信息,请参阅http://www.codestreet.com/marketdata/jms/jms_details.php。