Install rabbitmq on your machine
brew install rabbitmq
Start grails from the cloned directory
grails run-app
Breed a rabbit with
curl http://localhost:8080/mq-test/rabbit/breed
or many with
for i in {1..100}
do
curl http://localhost:8080/mq-test/rabbit/breed
done
Sections changed:
- grails-app/conf/Config.groovy
- grails-app/conf/BootStrap.groovy
- grails-app/controllers/*
- grails-app/services/*
- grails-app/domain/*