ActiveMQ的简单使用

阅读更多

项目中使用的介绍:

一.运行ActiveMQ:

在文件路径下...\apache-activemq-5.13.3\bin\win64

运行activemq.bat 

这是系统中的使用,运行后还可以访问相应的页面。

 

二.项目中的实践

1.依赖的jar包


            org.springframework
            spring-jms
        
        
            org.apache.activemq
            activemq-broker
        
        
            org.apache.activemq
            activemq-pool
        
        
            org.apache.activemq
            activemq-spring
        
        
            org.apache.activemq
            artemis-jms-client
        
        
            org.apache.activemq
            artemis-jms-server
        

 

2.配置ActiveMQ的配置,要和运行的保持一致,在commom.properties文件中。

activemq.broker.url=tcp://127.0.0.1:61616
activemq.user=admin
activemq.password=admin
activemq.name=datacenter.test
activemq.name.access=datacenter.access

 

3.applicationContext-mq.xml 中配置


    

    
    
        
        
    

    
    
        
        
    

    

    
        
    
    

 

4.编写生产者和消费者

  1) 生产者

import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.stereotype.Component;

import javax.annotation.Resource;
import javax.jms.Queue;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

@Component
public class CreditProducer {

    private Map cacheQueue = new ConcurrentHashMap();

    @Resource
    private JmsTemplate creditJmsTemplate;

    public void pushCreditData(String queueName ,Object message){

        Queue queue = cacheQueue.get(queueName);
        if(queue == null){
            queue = new ActiveMQQueue(queueName);
            cacheQueue.put(queueName,queue);
        }
        this.creditJmsTemplate.convertAndSend(queue, message);
    }
}

 

  2) 消费者:

public class MessageReceiver implements MessageListener {

    //自己定义的类,使用线程池来处理消息
    @Resource(name = "messageComputePool")
    MessageComputePool pool;

    public void onMessage(Message message) {
        if(message instanceof TextMessage) {
            TextMessage textMessage = (TextMessage) message;
            try {
                String text = textMessage.getText();
                System.out.println(String.format("Received: %s",text));
                JSONObject jsonObj = (JSONObject)JSONObject.parse(text);
                ...
                //消费者接收到消息就可以进行处理了
            } catch (JMSException e) {
                e.printStackTrace();
            }
        }


    }
}

 

  3)使用生产者推消息

@Service("collectService ")
public class CollectServiceImpl implements CollectService {
      public static final Logger LOG  = LoggerFactory.getLogger(CollectServiceImpl.class);

      @Resource
      private CreditProducer creditProducer;

      @Override
      public void collect(CollectParameter parameter) {
            Map dataMap = new HashMap();
            dataMap.put("sourceCode", parameter.getValue());
            dataMap.put("userId",parameter.getUserid());           
            creditProducer.pushCreditData("itom.activemq.access", JSON.toJSONString(dataMap));
        }
    }
}

 

推荐个ActiveMQ入门教程:

http://blog.csdn.net/jolingogo/article/category/1658165

 

 

你可能感兴趣的:(ActiveMQ)