springboot使用activemq

1.导包

  <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-activemq</artifactId>
        </dependency>

2.配置账号密码等

 

3.配置类

   3.1 配置目的地,我们用topic做实验

 @Bean
    public ActiveMQTopic depthTop() {
        return new ActiveMQTopic("depthtop");
    }

    3.2配置mq连接工厂

 

 public ActiveMQConnectionFactory activeMQConnectionFactory() {
        ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(username, password, brockUrl);
        factory.setMaxThreadPoolSize(30);
        return factory;
    }

    3.3配置spring管理的cache连接工厂

  @Bean
    public ConnectionFactory connectionFactory() {
        CachingConnectionFactory cachingConnectionFactory = new CachingConnectionFactory(activeMQConnectionFactory());
        cachingConnectionFactory.setSessionCacheSize(20);
        return cachingConnectionFactory;
    }

    3.4 配置 JmsMessagingTemplate

@Bean
    public JmsMessagingTemplate jmsMessagingTemplate() {
        JmsMessagingTemplate template = new JmsMessagingTemplate(connectionFactory());
        JmsTemplate jmsTemplate = template.getJmsTemplate();
        jmsTemplate.setDeliveryMode(DeliveryMode.NON_PERSISTENT);//非持久模式
        jmsTemplate.setPubSubDomain(true);//订阅模式
        jmsTemplate.setExplicitQosEnabled(true);//启用上面的设置
        return template;
    }

3.5使用  JmsMessagingTemplate

直接在类中 @Resource 引入JmsMessagingTemplate 即可

 

二,接收消息

JmsListener 注解,注解一个bean,即可接受信息

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值