2016-12-08 79 views
0

我宣佈一個JmsOutboundChannel網關如下:Spring的集成JMS網關數

JmsOutboundChannelSpecTemplateAware templateAware= 
    Jms.outboundAdapter(jmsConnectionChannelOneFactory) 
      .headerMapper(getJMsHeaderMapper()) 
      .destination(serverProperties.getQueueName()) 

我怎麼能提高JMS連接到消息經紀人/套多少?

回答

0

這取決於您的配置;當使用CachingConnectionFactory(推薦)時,有一個連接並且生產者被緩存(默認)。

使用提供程序的連接工廠時,將爲每個請求使用新的連接(速度要慢得多)。