1、SingleConnectionFactory:对于建立JMS服务器链接的请求会一直返回同一个链接,并且会忽略Connection的close方法调用。(org.springframework.jms.connection.
SingleConnectionFactory)
2、CachingConnectionFactory:继承了SingleConnectionFactory,所以它拥有SingleConnectionFactory的所有功能,同时它还新增了缓存功能,它可以缓存Session、MessageProducer和MessageConsumer。我们使用CachingConnectionFactory来作为示例。(org.springframework.jms.connection.CachingConnectionFactory
)
3、PooledConnectionFactory:线程池(org.apache.activemq.pool.PooledConnectionFactory)
时间: 2024-10-13 23:12:48