The javax.jms.ConnectionFactory has a parameterized metho
How do I configure this through xml? My connection factory bean looks like thisCode:createConnection(username, password);
Code:<bean id="subCachingConnectionFactory"class="org.springframework.jms.connection.CachingConnectionFactory"> <property name="targetConnectionFactory" ref="subConnectionFactory" /> <property name="reconnectOnException" value="true"/> <property name="sessionCacheSize" value="1" /> </bean>


Reply With Quote
