Hi,
I used embedded broker im my application, configed by spring:
<bean id="broker" class="org.apache.activemq.xbean.BrokerFactoryBean">
<property name="config" value="classpath:activemq.xml"/>
<property name="start" value="true" />
</bean>
I found when I shutted down my application, the broker always shut down
quickly, so other threads couldn't send the messages to the activemq. I tried
to configure the deponds-on method to control the destroy order, but still
couldn't resolve the problem.
How could I resolve it? I'm using the activemq 5.3.1
2010-12-05
renyong