ActiveMQ系列-02 spring&springboot整合

ActiveMQ - Spring&SpringBoot整合

前面一篇讲了消息中间件的一些基本概念、JMS协议还列举了原生JMS模式下的开发,这一篇主要讲spring和springboot框架下的开发,比原生模式下还是节省了很多开发时间的

Spring+ActiveMQ

spring与ActiveMQ的整合,有Spring基础的应该知道,除了添加相关依赖外,肯定少不了要写xml的配置文件

1. 添加相关依赖


    
        
            org.apache.activemq
            activemq-all
            5.11.2
        
        
            org.springframework
            spring-core
            5.0.2.RELEASE
        
        
            org.springframework
            spring-web
            5.0.2.RELEASE
        
        
            org.springframework
            spring-oxm
            5.0.2.RELEASE
        
        
            org.springframework
            spring-tx
            5.0.2.RELEASE
        
        
            org.springframework
            spring-jdbc
            5.0.2.RELEASE
        
        
            org.springframework
            spring-webmvc
            5.0.2.RELEASE
        
        
            org.springframework
            spring-aop
            5.0.2.RELEASE
        
        
            org.springframework
            spring-context-support
            5.0.2.RELEASE
        
        
            org.springframework
            spring-test
            5.0.2.RELEASE
            test
        
        
        
            org.springframework
            spring-jms
            5.0.2.RELEASE
        
        
            javax.jms
            javax.jms-api
            2.0.1
        
        
        
            org.apache.xbean
            xbean-spring
            3.7
        
        
            junit
            junit
            4.12
        
    

2. 编写spring整合activemq的配置文件




    
    
    
    
        
        
        
        
    
    
    
        
        
        
        
    
    
    
        
        
        
        
    

3. 完成上面两步后我们就可以正式工作了
这里我把两个模式的生产者写在一个类里

/*
* 演示Spring与ActiveMQ整合
*/
@RunWith(SpringJUnit4ClassRunner.class) // junit与spring整合
@ContextConfiguration("classpath:applicationContext-producer.xml") // 加载spring配置
public class SpringProducer {
    // 点对点模式的模板对象
    @Autowired
    @Qualifier("jmsQueueTemplate")
    private JmsTemplate jmsQueueTemplate;

    // 发布订阅模式
    @Autowired
    @Qualifier("jmsTopicTemplate")
    private JmsTemplate jmsTopicTemplate;

    /*
     * 点对点发送
     */
    @Test
    public void ptpSender(){
        /*
        * 参数一:指定队列的名称
        * 参数二:MessageCreator接口,我们需要提供该接口的匿名内部实现
        */
        jmsQueueTemplate.send("spring_queue", new MessageCreator() {
            // 我们只需要返回发送的消息内容即可
            @Override
            public Message createMessage(Session session) throws JMSException {
                // 创建文本消息
                TextMessage textMessage = session.createTextMessage("spring test message");
                return textMessage;
            }
        });
        System.out.println("消息发送已完成");
    }

    /*
     * 发布订阅发送
     */
    @Test
    public void psSender(){
        jmsTopicTemplate.send("spring_topic", new MessageCreator() {
            @Override
            public Message createMessage(Session session) throws JMSException {
                // 创建文本消息
                TextMessage textMessage = session.createTextMessage("spring test message--topic");
                return textMessage;
            }
        });
        System.out.println("消息发送已完成");
    }
}

消费者: 用监听器的方式实现

/*
* 点对点
*/
@Component // 放入SpringIOC容器,名称queueListener
public class QueueListener implements MessageListener {

    // 用于接收消息
    @Override
    public void onMessage(Message message) {
        if(message instanceof TextMessage){
            TextMessage textMessage= (TextMessage) message;
            try {
                System.out.println("queue接口消息: "+textMessage.getText());
            } catch (JMSException e) {
                e.printStackTrace();
            }
        }
    }
}

SpringBoot+ActiveMQ

上面讲了spring模式下的整合,其实springboot比这个更简单(springboot设计之初本来就是更少的配置文件,所以肯定会更简单)

1. 添加相关依赖

    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.1.RELEASE
        
    

    
        
            org.springframework.boot
            spring-boot-starter
        

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

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

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

2. 编写springboot的配置文件(application.yml)

server:
  port: 9091 # 服务启动端口
spring:
  application:
    name: activemq-demo # 服务名称,如果用于微服务架构来说要用到
# springboot与activemq的整合
  activemq:
    broker-url: tcp://127.0.0.1:61616
    user: admin
    password: admin
# 指定发送模式(点对点:false,发布订阅:true)
  jms:
    pub-sub-domain: true
# 自定义属性
activemq:
  name: springboot_topic
#  name: springboot_queue

3. 编写相关类
生产者:

/**
 * 演示springboot与activemq整合
 */
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = ProducerApplication.class)
public class SpringbootProducer {

    @Autowired
    private JmsMessagingTemplate jmsMessagingTemplate;
    @Value("${activemq.name}")
    private String name;

    @Test
    public void ptpSender(){
        jmsMessagingTemplate.convertAndSend(name,
                "this is springboot message");
    }
}

消费者:

@Component
public class MsgListener {

    @JmsListener(destination = "${activemq.name}")
    public void receive(Message message){
        if (message instanceof TextMessage){
            TextMessage textMessage = (TextMessage) message;
            try {
                System.out.println("接收消息: "+textMessage.getText());
            } catch (JMSException e) {
                e.printStackTrace();
            }
        }
    }
}

好了,完成!没有很多的文字叙述,个人感觉还是代码更直观!就不展示运行效果了吧,有兴趣的请自己打开idea试试吧~

你可能感兴趣的:(ActiveMQ系列-02 spring&springboot整合)