Skip to content

Commit

Permalink
Update doc with connection url
Browse files Browse the repository at this point in the history
  • Loading branch information
tkral committed Sep 12, 2011
1 parent 465f155 commit 97547fd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.textile
Expand Up @@ -50,7 +50,13 @@ rabbitmq.basicQos -> Please read RabbitMQ's documentation for more information o
rabbitmq.retries -> Max number of retries per message. This number can be overwritten on a queue level by overriding the retries() method on your consumer class.
rabbitmq.msgmapper -> Possible values are "pojo" or "json". These are the different implementations used to store and retrieve messages, "json" uses Jackson's ObjectMapper and "pojo" uses Java's serialization.

You may also combine several of these properties into a connection url:

rabbitmq.url=amqp://username:password@host[:port]/[vhost]

E.g.:

rabbitmq.url=amqp://guest:gues@localhost/

h3. 4) Define Message that will be used by the Queue (just a simple POJO)

Expand Down
6 changes: 6 additions & 0 deletions documentation/manual/home.textile
Expand Up @@ -50,7 +50,13 @@ rabbitmq.basicQos -> Please read RabbitMQ's documentation for more information o
rabbitmq.retries -> Max number of retries per message. This number can be overwritten on a queue level by overriding the retries() method on your consumer class.
rabbitmq.msgmapper -> Possible values are "pojo" or "json". These are the different implementations used to store and retrieve messages, "json" uses Jackson's ObjectMapper and "pojo" uses Java's serialization.

You may also combine several of these properties into a connection url:

rabbitmq.url=amqp://username:password@host[:port]/[vhost]

E.g.:

rabbitmq.url=amqp://guest:gues@localhost/

h3. 4) Define Message that will be used by the Queue (just a simple POJO)

Expand Down

0 comments on commit 97547fd

Please sign in to comment.