没有OOM的BytesMessage

时间:2012-01-23 20:01:47

标签: java jms out-of-memory

有没有办法将大文件放入JMS队列而不将整个内容加载到内存中?假设文件是​​100MB,我可以将其流入和流出队列,还是必须将整个字节数组加载到内存中?

2 个答案:

答案 0 :(得分:3)

JMS不直接支持此功能。但是有支持JMS的实现,例如支持传递流的Apache ActiveMQ。有关详细信息,请参阅ActiveMQ站点上的this page

答案 1 :(得分:0)

您可以做的是将Apache Camel与Message Broker结合使用。

利用企业集成模式here,您可以将文件存放在中央存储中。然后通过您的代理将消息(标题和对索赔的引用)发送为普通消息。然后在传递消息时,可以再次拾取文件。

例如:

<route>
<from uri="direct:start"/>
<pipeline>
    <to uri="bean:checkLuggage"/>
    <to uri="mock:testCheckpoint"/>
    <to uri="bean:dataEnricher"/>
    <to uri="mock:result"/>
</pipeline>
</route>

checkLuggage看起来像这样:

public static final class CheckLuggageBean {        
  public void checkLuggage(Exchange exchange, @Body String body, @XPath("/order/@custId") String custId) {   
    // store the message body into the data store, using the custId as the claim check
    dataStore.put(custId, body);
    // add the claim check as a header
    exchange.getIn().setHeader("claimCheck", custId);
    // remove the body from the message
    exchange.getIn().setBody(null);
}

}

dataEnricher看起来像这样:

public static final class DataEnricherBean {
  public void addDataBackIn(Exchange exchange, @Header("claimCheck") String claimCheck) { 
    // query the data store using the claim check as the key and add the data
    // back into the message body
    exchange.getIn().setBody(dataStore.get(claimCheck));
    // remove the message data from the data store
    dataStore.remove(claimCheck);
    // remove the claim check header
    exchange.getIn().removeHeader("claimCheck");
  }
}