1、RabbitMq的生产者端
步骤一:引入AMQP依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
步骤二:在yml文件中,写好对于云端rabbitmq的一些基本信息
步骤三:书写测试类:
确定好队列名与信息后,即可通过converAndSend方法向云端服务器MQ添加数据
2、RabbitMq的消费者端
步骤一:同上,配置mq的基本配置信息
步骤二:监听某一队列,获取其中信息
监听到该队列,然后获取信息,打印即可
3、存储对象信息,转为json
步骤一:导入fastjson依赖
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.41</version>
</dependency>
步骤二:将对象转为json字符串
User a=new User(1,"tom",12);
String user=JSONObject.toJSONString(a);