We are working on a IBM WebSphere MQ application, and we use JMS API to operating the message. But we have a problem that the connection takes too much time, and we want to pooling the JMS connection, for it's a standalone application, we have no application container to provide JNDI or pooling service. So is there a solution to resolve this? For JDBC we can use DBCP or c3p0 to archive pooling datasource, in JMS, is there any similar project can pooling JMS connections?
|
feedback
|
|
It used to be that the JMS MQConnectionFactory had pooling built in, but it seems that in version 7, it has been removed.
In the absence of anything else, you can use Apache Commons Pool. Same idea as DBCP (which uses Pool) but for non JDBC objects. | |||
|
feedback
|