Note to escape & in XML JDBC Connection

This commit is contained in:
Martyn Taylor 2016-06-07 16:25:09 +01:00 committed by Clebert Suconic
parent 4ee53d054f
commit d3024598e3
1 changed files with 2 additions and 2 deletions

View File

@ -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 <core> element. For example:
2. Create a store element in your broker.xml config file under the <core> element. For example:
```xml
<store>
@ -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 "&amp;".
- `bindings-table-name`