activemq发送客户端(封装)

1、在pom中引入

  cn.activemq.client
  activemqclient
  1.0


2、添加配置文件



xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
">







queue1











3、添加消息发送接口


package cn.cashier.service.mq;


import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.Scheduled;


import cn.activemq.client.CJActiveMQProducer;


public class CashierMQProducer extends CJActiveMQProducer{
    private static final Logger logger = (Logger) LoggerFactory
            .getLogger(CashierMQProducer.class);
    @Override
    public void sendMessage(String arg0, Object arg1) {
        logger.info("开始发送消息。。。");
        super.run(arg0, arg1);
    }
    
    @Scheduled(cron="0/10 * *  * * ? ")
    public void test(){
        sendMessage("queue1","test message");
    }
}


4、sendmessage是固定方法

5、在test中针对队列发送消息,改队列的名称和配置文件中的队列名称需要一直,否则发送不出去。

如果需要多个队列,发送不同的业务消息,在test方法中实现即可。

相比较原生的方法,不需要在配置文件中配置多个发送实例。

你可能感兴趣的:(activemq)