From d3024598e3a0b3c63ba306fadbdfeb0836898179 Mon Sep 17 00:00:00 2001 From: Martyn Taylor Date: Tue, 7 Jun 2016 16:25:09 +0100 Subject: [PATCH] Note to escape & in XML JDBC Connection --- docs/user-manual/en/persistence.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-manual/en/persistence.md b/docs/user-manual/en/persistence.md index 999d875a79..7eaf4e495d 100644 --- a/docs/user-manual/en/persistence.md +++ b/docs/user-manual/en/persistence.md @@ -386,7 +386,7 @@ 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. -2. create a store element in your broker.xml config file under the element. For example: +2. Create a store element in your broker.xml config file under the element. For example: ```xml @@ -402,7 +402,7 @@ To configure Apache ActiveMQ Artemis to use a database for persisting messages a - `jdbc-connection-url` - The full JDBC connection URL for your database server. The connection url should include all configuration parameters and database name. + The full JDBC connection URL for your database server. The connection url should include all configuration parameters and database name. Note: When configuring the server using the XML configuration files please ensure to escape any illegal chars; "&" for example, is typical in JDBC connection url and should be escaped to "&". - `bindings-table-name`