居然忘了自己粗略的研究过RabbitMQ ,但是记忆已被尘封,居然又想研究它了,之前只是蜻蜓点水地看了一下效果,对其特性还没深入研究过,慢慢学习。
1.RabbitMQ Server 服务端
1.1系统支持
windows/linux/unix/mac OS
1.2Server下载
http://www.rabbitmq.com/releases/rabbitmq-server/v3.4.2/rabbitmq-server-windows-3.4.2.zip
1.3历史版本
http://www.rabbitmq.com/releases/rabbitmq-server/
1.4资源下载
如果你还没有RabbitMQ,那就访问这里吧:Installing RabbitMQ | RabbitMQ,在这里你可以更好的把我其特性。
1.5启动Server
rabbitmq-server — detached
执行bat文件 服务器后台进程中运行。
1.6建立服务
rabbitmq-service install
rabbitmq-service start
help
Display usage information.
install
Install the service. The service will not be started. Subsequent invocations will update the service parameters if relevant environment variables were modified.
remove
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
Start the service. The service must have been correctly installed beforehand.
stop
Stop the service. The service must be running for this command to have any effect.
disable
Disable the service. This is the equivalent of setting the startup type to Disabled using the service control panel.
enable
Enable the service. This is the equivalent of setting the startup type to Automatic using the service control panel.
在执行中bat作为服务可以省掉不写。2.RabbitMQ 客户端开发
2.1支持客户端语言
2.2Maven配置
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>3.4.2</version>
</dependency>
2.3Java Client下载
RabbitMQ Java Client Library | RabbitMQ
如果还不知道怎么去安装使用,我这里还有篇文章:RabbitMQ入门安装及测试_rabbitmq测试服务器-优快云博客以后有时间再深入研究。