|
1 | 1 | # Clojure code for RabbitMQ tutorials
|
2 | 2 |
|
3 | 3 | Here you can find Clojure code examples from
|
4 |
| -[RabbitMQ tutorials](http://www.rabbitmq.com/getstarted.html). |
| 4 | +[RabbitMQ tutorials](https://www.rabbitmq.com/getstarted.html). |
5 | 5 |
|
6 | 6 | ## Requirements
|
7 | 7 |
|
8 |
| -To run this code you need [Leiningen](http://leiningen.org). |
| 8 | +To run this code you need [Leiningen](https://leiningen.org). |
9 | 9 |
|
10 | 10 | These tutorials will work on JDK 6 through 8 (Oracle or OpenJDK).
|
11 | 11 |
|
12 | 12 | ## Code
|
13 | 13 |
|
14 | 14 | Code examples are executed via `lein run`:
|
15 | 15 |
|
16 |
| -[Tutorial one: "Hello World!"](http://www.rabbitmq.com/tutorial-one-java.html): |
| 16 | +[Tutorial one: "Hello World!"](https://www.rabbitmq.com/tutorial-one-java.html): |
17 | 17 |
|
18 | 18 | lein run -m rabbitmq.tutorials.send
|
19 | 19 | lein run -m rabbitmq.tutorials.receive
|
20 | 20 |
|
21 |
| -[Tutorial two: Work Queues](http://www.rabbitmq.com/tutorial-two-java.html): |
| 21 | +[Tutorial two: Work Queues](https://www.rabbitmq.com/tutorial-two-java.html): |
22 | 22 |
|
23 | 23 | lein run -m rabbitmq.tutorials.new-task
|
24 | 24 | lein run -m rabbitmq.tutorials.worker
|
25 | 25 |
|
26 |
| -[Tutorial three: Publish/Subscribe](http://www.rabbitmq.com/tutorial-three-java.html) |
| 26 | +[Tutorial three: Publish/Subscribe](https://www.rabbitmq.com/tutorial-three-java.html) |
27 | 27 |
|
28 | 28 | lein run -m rabbitmq.tutorials.receive-logs
|
29 | 29 | lein run -m rabbitmq.tutorials.emit-log
|
30 | 30 |
|
31 |
| -[Tutorial four: Routing](http://www.rabbitmq.com/tutorial-four-java.html) |
| 31 | +[Tutorial four: Routing](https://www.rabbitmq.com/tutorial-four-java.html) |
32 | 32 |
|
33 | 33 | lein run -m rabbitmq.tutorials.receive-logs-direct
|
34 | 34 | lein run -m rabbitmq.tutorials.emit-log-direct info
|
35 | 35 |
|
36 |
| -[Tutorial five: Topics](http://www.rabbitmq.com/tutorial-five-java.html) |
| 36 | +[Tutorial five: Topics](https://www.rabbitmq.com/tutorial-five-java.html) |
37 | 37 |
|
38 | 38 | lein run -m rabbitmq.tutorials.receive-logs-topic
|
39 | 39 | lein run -m rabbitmq.tutorials.emit-log-topic info
|
40 | 40 |
|
41 |
| -[Tutorial six: RPC](http://www.rabbitmq.com/tutorial-six-java.html) |
| 41 | +[Tutorial six: RPC](https://www.rabbitmq.com/tutorial-six-java.html) |
42 | 42 |
|
43 | 43 | lein run -m rabbitmq.tutorials.rpc-server
|
44 | 44 | lein run -m rabbitmq.tutorials.rpc-client
|
|
0 commit comments