I am trying to understand more about ActiveMQ (JMS implementation) and the integration with 'Spring integration' framework .
<bean id="connectionFactory" class="org.apache.activemq.ActiveMQConnectionFacto ry">
<property name="brokerURL" value="tcp://localhost:61616" />
</bean
When we instantiate a bean like that - do we expect any other process running on that particular host / port listed above ( may be a broker process ? ) .
( if not - Is there any way we can integrate the same with the spring config. so that when the spring application context is loaded from the .xml file, the broker is already up and running on the requisite name / port . )


Reply With Quote
