JAVA消息中间件——使用activemq

目录

 

win安装activemq

启动方式一

启动方式二

队列模式的消息演示

主题模式的消息演示


win安装activemq

进入http://activemq.apache.org/activemq-5144-release.html,下载win安装包。

启动方式一

启动activemq,以管理员身份运行。

默认用户密码都是admin

进入管理平台

启动方式二

以管理员身份运行。

在这里启动

队列模式的消息演示

新建项目后,引用jar包

<dependencies>
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-all</artifactId>
            <version>5.9.0</version>
        </dependency>
</dependencies>

创建生产者生产消息

public class AppProducer {

    private static final String url = "tcp://127.0.0.1:61616";
    private static final String queueName = "queue-test";

    public static void main(String[] args) throws JMSException {

        //1、创建ConnectionFactory
        ConnectionFactory connectionFactory = new ActiveMQConnectionFactory(url);

        //2、创建Connection
        Connection connection = connectionFactory.createConnection();

        //3、启动连接
        connection.start();

        //4、创建会话
        Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);

        //5、创建一个目标
        Destination destination = session.createQueue(queueName);

        //6、创建一个生产者
        MessageProducer producer = session.createProducer(destination);

        for (int i = 0; i < 100; i++) {
            //7、创建消息
            TextMessage textMessage = session.createTextMessage("test" + i);
            //8、发布消息
            producer.send(textMessage);
            System.out.println("发送消息" + textMessage.getText());
        }
        //9、关闭连接
        connection.close();
    }
}

执行后,在activemq控制台可以看到消息

再创建一个消费者

public class AppConsumer {

    private static final String url = "tcp://127.0.0.1:61616";
    private static final String queueName = "queue-test";

    public static void main(String[] args) throws JMSException {

        //1、创建ConnectionFactory
        ConnectionFactory connectionFactory = new ActiveMQConnectionFactory(url);

        //2、创建Connection
        Connection connection = connectionFactory.createConnection();

        //3、启动连接
        connection.start();

        //4、创建会话
        Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);

        //5、创建一个目标
        Destination destination = session.createQueue(queueName);

        //6、创建一个消费者
        MessageConsumer consumer = session.createConsumer(destination);

        //7、创建一个监听器
        consumer.setMessageListener(new MessageListener() {
            public void onMessage(Message message) {
                TextMessage textMessage = (TextMessage) message;
                try {
                    System.out.println("接受消息" + textMessage.getText());
                } catch (JMSException e) {
                    e.printStackTrace();
                }
            }
        });

        //8、关闭连接
//        connection.close();
    }
}

消费者不关闭连接,一直监听,当利用生产者生产消息后,两个消费者会收到消息,但是是平均接受消息,如下图。

主题模式的消息演示

主题模式的代码只要修改消费者和生产者的如下代码就可

//5、创建一个目标
        Destination destination = session.createTopic(topicName);

注:主题模式下,消费者若没有提前订阅主题,是不能收到消息的,所以需要先订阅,也就是先启动消费者去监听。

当启动两个消费者去监听消息时,启动生产者发送消息后,两个消费者都会收到生产者发送的所有消息,这一点和队列模式不同。

 

 

 

 

 

 

 

 

 

 

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值