update to JDBC config doc

This commit is contained in:
Martyn Taylor 2016-06-17 13:20:38 +01:00 committed by Clebert Suconic
parent 824b316719
commit 32706823ea
1 changed files with 2 additions and 2 deletions

View File

@ -386,12 +386,12 @@ To configure Apache ActiveMQ Artemis to use a database for persisting messages a
1. Add the appropriate JDBC driver libraries to the Artemis runtime. You can do this by dropping the relevant jars in the lib folder of the ActiveMQ Artemis distribution. 1. Add the appropriate JDBC driver libraries to the Artemis runtime. You can do this by dropping the relevant jars in the lib folder of the ActiveMQ Artemis distribution.
2. Create a store element in your broker.xml config file under the <core> element. For example: 2. Create a store element in your broker.xml config file under the ```<core>``` element. For example:
```xml ```xml
<store> <store>
<database-store> <database-store>
<jdbc-connection-url>jdbc:derby:target/derby/database-store;create=true</jdbc-connection-url> <jdbc-connection-url>jdbc:derby:data/derby/database-store;create=true</jdbc-connection-url>
<bindings-table-name>BINDINGS_TABLE</bindings-table-name> <bindings-table-name>BINDINGS_TABLE</bindings-table-name>
<message-table-name>MESSAGE_TABLE</message-table-name> <message-table-name>MESSAGE_TABLE</message-table-name>
<large-message-table-name>LARGE_MESSAGES_TABLE</large-message-table-name> <large-message-table-name>LARGE_MESSAGES_TABLE</large-message-table-name>