居然忘了自己粗略的研究过RabbitMQ ,但是记忆已被尘封,居然又想研究它了,之前只是蜻蜓点水地看了一下效果,对其特性还没深入研究过,慢慢学习。
windows/linux/unix/mac OS
http://www.rabbitmq.com/releases/rabbitmq-server/v3.4.2/rabbitmq-server-windows-3.4.2.zip
http://www.rabbitmq.com/releases/rabbitmq-server/
如果你还没有RabbitMQ,那就访问这里吧:http://www.rabbitmq.com/download.html,在这里你可以更好的把我其特性。
rabbitmq-server — detached执行bat文件 服务器后台进程中运行。
rabbitmq-service install
rabbitmq-service start
Display usage information.
Install the service. The service will not be started. Subsequent invocations will update the service parameters if relevant environment variables were modified.
Remove the service. If the service is running then it will automatically be stopped before being removed. No files will be deleted as a consequence and rabbitmq-server will remain operable.
Start the service. The service must have been correctly installed beforehand.
Stop the service. The service must be running for this command to have any effect.
Disable the service. This is the equivalent of setting the startup type to Disabled using the service control panel.
Enable the service. This is the equivalent of setting the startup type to Automatic using the service control panel.
在执行中bat作为服务可以省掉不写。<dependency> <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> <version>3.4.2</version> </dependency>
http://www.rabbitmq.com/java-client.html
如果还不知道怎么去安装使用,我这里还有篇文章:http://blog.csdn.net/boonya/article/details/37879739以后有时间再深入研究。