This closes #584

This commit is contained in:
Clebert Suconic 2016-06-17 15:05:13 -04:00
commit ad5e7bf68b
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>