|
Revision 2832
(checked in by douglm, 3 years ago)
|
Add support for h2 as a network available db running as a jboss service
Add a configuration for that database
|
| Line | |
|---|
| 1 |
# |
|---|
| 2 |
# activemq jndi.properties for runable applications |
|---|
| 3 |
# |
|---|
| 4 |
java.naming.factory.initial = org.apache.activemq.jndi.ActiveMQInitialContextFactory |
|---|
| 5 |
|
|---|
| 6 |
# use the following property to configure the default connector |
|---|
| 7 |
java.naming.provider.url = tcp://localhost:61616?trace=true |
|---|
| 8 |
|
|---|
| 9 |
// Allows us to handle container differences |
|---|
| 10 |
#org.bedework.connection.factory.name=java:activemq/QueueConnectionFactory |
|---|
| 11 |
org.bedework.connection.factory.name=ConnectionFactory |
|---|
| 12 |
|
|---|
| 13 |
org.bedework.jms.queue.prefix=queue/ |
|---|
| 14 |
|
|---|
| 15 |
# use the following property to specify the JNDI name the connection factory |
|---|
| 16 |
# should appear as. |
|---|
| 17 |
connectionFactoryNames =ConnectionFactory |
|---|
| 18 |
|
|---|
| 19 |
# register some queues in JNDI using the form |
|---|
| 20 |
# queue.[jndiName] = [physicalName] |
|---|
| 21 |
queue.queue/sysevents = bedework.sysevents |
|---|
| 22 |
|
|---|
| 23 |
queue.queue/syseventslog = bedework.sysevents.logger |
|---|
| 24 |
|
|---|
| 25 |
queue.queue/monitor = bedework.sysevents.monitor |
|---|
| 26 |
|
|---|
| 27 |
queue.queue/schedulerIn = bedework.scheduleIn |
|---|
| 28 |
|
|---|
| 29 |
queue.queue/schedulerOut = bedework.scheduleOut |
|---|
| 30 |
|
|---|
| 31 |
queue.queue/crawler = bedework.crawler |
|---|
| 32 |
|
|---|
| 33 |
# register some topics in JNDI using the form |
|---|
| 34 |
# topic.[jndiName] = [physicalName] |
|---|
| 35 |
#topic.MyTopic = example.MyTopic |
|---|