Hi,
I am using ActiveMQ 4.0.1 running under Tomcat 5.5.17. I would like to
persist the messages to a Postgres database rather than the default
apache-derby database.
What additional config parameters do I need to set in my context.xml file.
TIA Peter
context.xml:
<Context antiJARLocking="true">
<Resource
name="jms/ConnectionFactory"
auth="Container"
type="org.apache.activemq.ActiveMQConnectionFactory"
description="JMS Connection Factory"
factory="org.apache.activemq.jndi.JNDIReferenceFactory"
brokerURL="vm://localhost"
brokerName="LocalActiveMQBroker"
useEmbeddedBroker="false"/>
<Resource name="jms/MyTopic"
auth="Container"
type="org.apache.activemq.command.ActiveMQTopic"
factory="org.apache.activemq.jndi.JNDIReferenceFactory"
physicalName="MY.TEST.FOO"/>
<Resource name="jms/MyQueue"
auth="Container"
type="org.apache.activemq.command.ActiveMQQueue"
factory="org.apache.activemq.jndi.JNDIReferenceFactory"
physicalName="MY.TEST.BAR"/>
</Context>
--
View this message in context:
http://www.nabble.com/Postgres-persistence-in-Tomcat-tf2225497.html#a6167044
Sent from the ActiveMQ - User forum at Nabble.com.