activemq的配置及使用

xml----------------------------------------------------------------------------------------------


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

    
        
    

    
    
        
    

    
    
        
    

    
    
    
        
            wgq_queue
        

    

    
    
    
    
    
    
        
        
        
    

    

 

发送--------------------------------------------------

        //持久化到数据库
            jmsTemplate.setDeliveryPersistent(true);
            //jmsTemplate.setDeliveryMode(DeliveryMode.PERSISTENT);
            
            for (int i = 0; i < listfp.size(); i++) {
                JSONObject newfp = new JSONObject();
                JSONArray newfp_list = new JSONArray();
                newfp_list.add(listfp.get(i));
                newfp.put("list", newfp_list);
                newfp.put("ret", ret);
                newfp.put("msg", msg);
                
                jmsTemplate.send(destination, new MessageCreator() {
                    @Override
                    public Message createMessage(Session session) throws JMSException {
                        TextMessage textMessage = session.createTextMessage(newfp.toJSONString());
                        logger.info("发送...:" + textMessage);
                        return textMessage;
                    }

 

 

接收----------------------------------------------------------------------------

public class ActiveMQListener implements MessageListener {

    private OIDocCenterService oiDocCenterService = null;
    
    private static Logger logger = Logger.getLogger(ActiveMQListener.class.getName());

    @Override
    public void onMessage(Message message) {
        if(oiDocCenterService==null)
        oiDocCenterService=(OIDocCenterService) SystemInitListener.getAppContext().getBean("oiDocCenterService",IOIDocCenterService.class);
        try {
            TextMessage textMessage = (TextMessage) message;
            String text = textMessage.getText();
            logger.info("接收到mq的发票信息:" + text);
            JSONObject fapobj=JSON.parseObject(text);
            JSONArray list = fapobj.getJSONArray("list");
            String ret = (String) fapobj.get("ret");
            String msg = (String) fapobj.get("msg");
            ServerGetInvoiceList invoicelist = JSON.parseObject(list.getString(0), ServerGetInvoiceList.class);
            ServerGetInvoice invoice = invoicelist.getInvoice();
            // 调用发票同步接口
            oiDocCenterService.doServerPut(invoice,ret,msg);
        } catch (JMSException e) {
            e.printStackTrace();
        }
    }

你可能感兴趣的:(activemq的配置及使用)