1

我的消息大小可能达到 2MB,并且我预计至少有 1000 条消息可用。

4

1 回答 1

0

为什么在收到队列消息时不保留它?

public void onMessage(Message message) {
        if (message instanceof TextMessage) {
            try {
                messageDao.save(message); // <----- See you can persist then and there
            }
             catch (JMSException ex) {
                throw new RuntimeException(ex);
            }
        }
        else {
            throw new IllegalArgumentException("Message must be of type TextMessage");
        }       

   }
于 2013-04-18T17:31:20.103 回答