微人事第十二天:SpringBoot整合ActiveMQ

ActiveMQ介绍
MQ是消息中间件,是一种在分布式系统中应用程序借以传递消息的媒介,常用的有ActiveMQ,RabbitMQ,kafka。ActiveMQ是Apache下的开源项目,完全支持JMS1.1和J2EE1.4规范的JMS Provider实现。
特点:
1、支持多种语言编写客户端
2、对spring的支持,很容易和spring整合
3、支持多种传输协议:TCP,SSL,NIO,UDP等
4、支持AJAX
消息形式:
1、点对点(queue)
2、一对多(topic)

ActiveMQ在windows上的安装步骤:
访问http://activemq.apache.org/ (ActiveMQ官网)
微人事第十二天:SpringBoot整合ActiveMQ_第1张图片
微人事第十二天:SpringBoot整合ActiveMQ_第2张图片
下载完成之后解压压缩包:
在这里插入图片描述
配置JAVA_HOME变量,然后打开bin目录
微人事第十二天:SpringBoot整合ActiveMQ_第3张图片
双击activemq,运行
微人事第十二天:SpringBoot整合ActiveMQ_第4张图片
访问http://localhost:8161/admin 用户名和密码都填写admin
出现如下界面访问成功
微人事第十二天:SpringBoot整合ActiveMQ_第5张图片
以上这些就是ActiveMQ的基本配置,接下来通过springboot工程来整合。
引入web和activemq依赖
微人事第十二天:SpringBoot整合ActiveMQ_第6张图片
pom.xml文件如下(第一次下载依赖时间较长)



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.7.RELEASE
         
    
    org.javaboy
    activemq
    0.0.1-SNAPSHOT
    activemq
    Demo project for Spring Boot

    
        1.8
    

    
        
            org.springframework.boot
            spring-boot-starter-activemq
        
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    



activemq的配置
这里配置activemq的端口,用户名以及密码。
方法中写队列的名称。

#通信端口
spring.activemq.broker-url=tcp://localhost:61616
#表示可以发送对象
spring.activemq.packages.trust-all=true
spring.activemq.user=admin
spring.redis.password=admin

在启动类中写消息队列对象

package org.javaboy.activemq;

import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

import javax.jms.Queue;


@SpringBootApplication
public class ActivemqApplication {

    public static void main(String[] args) {
        SpringApplication.run(ActivemqApplication.class, args);
    }

    @Bean
    Queue queue() {
        return new ActiveMQQueue("hello.javaboy");   //队列名称
    }
}

定义消息收发的方法

package org.javaboy.activemq;


import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.annotation.JmsListener;
import org.springframework.jms.core.JmsMessagingTemplate;
import org.springframework.stereotype.Component;

import javax.jms.Queue;

//定义消息收发的方法
@Component
public class JmsComponent {
    @Autowired
    JmsMessagingTemplate jmsMessagingTemplate;  //消息发送模板
    @Autowired
    Queue queue;

    //定义方法发送message
    public void send(Message message) {
        jmsMessagingTemplate.convertAndSend(this.queue,message);
    }

    //定义接受消息
    @JmsListener(destination = "hello.javaboy")
    public void receive(Message message) {
        System.out.println(message);
    }
}

其中我们还需要Message信息实体类

package org.javaboy.activemq;

import java.io.Serializable;
import java.util.Date;

public class Message implements Serializable {
    private String content;  //消息主体
    private Date sendData;   //消息发送日期

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public Date getSendData() {
        return sendData;
    }

    public void setSendData(Date sendData) {
        this.sendData = sendData;
    }

    @Override
    public String toString() {
        return "Message{" +
                "content='" + content + '\'' +
                ", sendData=" + sendData +
                '}';
    }
}

接下来定义一个测试类看看发出的消息是否会被收到
测试类中需要将之前定义好的JmsComponent配置类自动注入进来,然后调用该类的发送方法

package org.javaboy.activemq;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

import java.util.Date;

@RunWith(SpringRunner.class)
@SpringBootTest
public class ActivemqApplicationTests {

    @Autowired
    JmsComponent jmsComponent;

    @Test
    public void contextLoads() {
        Message message = new Message();
        message.setContent("hello javaboy");
        message.setSendData(new Date());
        jmsComponent.send(message);
    }

}

配置类中的接受方法接收到了发送方的信息(destination中的名称和application.properties中写的相同。)
在这里插入图片描述
控制台打印成功

Message{content='hello javaboy', sendData=Tue Feb 11 11:37:22 GMT+08:00 2020}

你可能感兴趣的:(微人事课程)