Please suggest me where can I specify value for property "activemq-data" in
configration.
here is my configration of my jms
<bean id="jmsConnectionFactory"
class="org.apache.activemq.ActiveMQConnectionFactory" >
<property name="brokerURL" value="vm://localhost"/>
</bean>
<bean id="connectionFactory"
class="org.springframework.jms.connection.CachingConnectionFactory">
<constructor-arg ref="jmsConnectionFactory" />
<property name="sessionCacheSize" value="100" />
</bean>
<bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
<property name="connectionFactory" ref="connectionFactory" />
</bean>
<bean id="emailQueue" class="org.apache.activemq.command.ActiveMQQueue">
<constructor-arg value="hhs.gov.email.queue"/>
</bean>
--
View this message in context:
http://old.nabble.com/specify-data-dir--for-property---activemq-data-tp29543045p29543045.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.