文件名:applicationContext-biz-mq.xml

新浪博客把里面的代码全部转换成HTML了,所以无法粘贴

可以查看CSDN里面的:http://blog.csdn.net/xiazou/article/details/19559247

mqconnect.properties配置文件:

#通道名
app.mq.channel=SYSTEM.DEF.SVRCONN
#传输类型
app.mq.transportType=1
#端口号
app.mq.port=1414
#队列管理器名称-发送方
queue.manager.send=WMQ1QM
#主机地址-发送方
queue.manager.host.send=10.70.175.81
#队列名称-发送方
queue.name.send=WMQ1OutputQ

#队列管理器名称--接收方
queue.manager.get=WMQ2QM
#主机地址--接收方
queue.manager.host.get=10.70.175.82
#队列名称--接收方
queue.name.get=WMQ2InputQ

MessageTest.java测试文件,用来启动接收监听的配置文件:

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MessageTest {

public static void main(String[] args) {
  new ClassPathXmlApplicationContext("classpath*:/applicationContext-biz-mq.xml");

}

}

MessageListener.java监听文件:

import com.zmcc.servicemanager.biz.CallRecordBiz;
import com.zmcc.servicemanager.domain.CallRecord;

public class MessageListener{

private CallRecordBiz callRecordBiz;
 
 
 public void receviedMessage(CallRecord callRecord) {
  System.out.println(callRecord.getRequestContent());
 }

public CallRecordBiz getCallRecordBiz() {
  return callRecordBiz;
 }

public void setCallRecordBiz(CallRecordBiz callRecordBiz) {
  this.callRecordBiz = callRecordBiz;
 }
 
}

MessageConverter.java用来转换的类:

import java.util.Date;

import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.Session;
import javax.jms.TextMessage;

import org.springframework.jms.support.converter.MessageConversionException;

import com.zmcc.servicemanager.domain.CallRecord;

public class MessageConverter implements org.springframework.jms.support.converter.MessageConverter {

public Message toMessage(Object object, Session session) throws JMSException, MessageConversionException {
  return null;
 }

public Object fromMessage(Message message) throws JMSException,MessageConversionException {
  // TODO
  TextMessage mapMessage = (TextMessage) message;
  CallRecord callRecord = new CallRecord();
  callRecord.setEndTime(new Date());
  callRecord.setRequestContent(mapMessage.getText());
  
  return callRecord;
 }

}

CallRecord.java实体类

public class CallRecord implements Serializable{
 
   
 private static final long serialVersionUID = 1L;

private String requestContent;

private Date endTime;

……

}

JmsProducer.java发送消息:

import javax.jms.Connection;
import javax.jms.Destination;
import javax.jms.JMSException;
import javax.jms.MessageProducer;
import javax.jms.Session;
import javax.jms.TextMessage;

import com.ibm.mq.jms.JMSC;
import com.ibm.mq.jms.MQQueueConnectionFactory;

public class JmsProducer {

public static void main(String[] args) {

// Variables
  Connection connection = null;
  Session session = null;
  Destination destination = null;
  MessageProducer producer = null;

try {
   // Create a connection factory
   // objects
   MQQueueConnectionFactory factory = new MQQueueConnectionFactory();
   factory.setQueueManager("WMQ1QM");
   factory.setHostName("10.70.175.81");
   factory.setTransportType(JMSC.MQJMS_TP_CLIENT_MQ_TCPIP);
   factory.setPort(1414);
   factory.setChannel("SYSTEM.DEF.SVRCONN");

// Create JMS objects
   connection = factory.createConnection();
   session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
   destination = session.createQueue("WMQ1OutputQ");
   producer = session.createProducer(destination);

long uniqueNumber = System.currentTimeMillis() % 1000;
   TextMessage message = session
     .createTextMessage("JmsProducer: Your lucky number today is " + uniqueNumber);

// Start the connection
   connection.start();

// And, send the message
   producer.send(message);
   System.out.println("Sent message:\n" + message);

} catch (JMSException jmsex) {
   jmsex.fillInStackTrace();
  } finally {
   try {
    producer.close();
    session.close();
    connection.close();
   } catch (JMSException e) {
    e.printStackTrace();
   }
  }
 }

}

IBM MQ 与spring的整合的更多相关文章

  1. IBM MQ + WebSphere + Spring JMS配置方法

    IBM MQ + WebSphere + Spring JMS配置方法  首先要在WAS里面配置IBM MQ作为JMS消息的提供者,在WAS管理控制台: Resources->JMS Provi ...

  2. spring监听与IBM MQ JMS整合

    spring xml 的配置: 文件名:applicationContext-biz-mq.xml <?xml version="1.0" encoding="UT ...

  3. IBM Mq Spring JMS 的xml配置

    <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.spr ...

  4. 用IBM WebSphere DataStage进行数据整合: 第 1 部分

    转自:http://www.ibm.com/developerworks/cn/data/library/techarticles/dm-0602zhoudp/ 引言 传统的数据整合方式需要大量的手工 ...

  5. 【RabbitMQ系列】 Spring mvc整合RabbitMQ

    一.linux下安装rabbitmq 1.安装erlang环境 wget http://erlang.org/download/otp_src_18.2.1.tar.gz tar xvfz otp_s ...

  6. Spring Boot整合Mybatis并完成CRUD操作

    MyBatis 是一款优秀的持久层框架,被各大互联网公司使用,本文使用Spring Boot整合Mybatis,并完成CRUD操作. 为什么要使用Mybatis?我们需要掌握Mybatis吗? 说的官 ...

  7. IBM MQ 集成CXF 发送JMS 消息

    0.POM依赖 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w ...

  8. 用IBM WebSphere DataStage进行数据整合: 第 1 部分 分类: H2_ORACLE 2013-08-23 11:20 688人阅读 评论(0) 收藏

    转自:http://www.ibm.com/developerworks/cn/data/library/techarticles/dm-0602zhoudp/ 引言 传统的数据整合方式需要大量的手工 ...

  9. Spring Boot2 系列教程(二十四)Spring Boot 整合 Jpa

    Spring Boot 中的数据持久化方案前面给大伙介绍了两种了,一个是 JdbcTemplate,还有一个 MyBatis,JdbcTemplate 配置简单,使用也简单,但是功能也非常有限,MyB ...

随机推荐

  1. Ubuntu-14.04.1 desktop安装时遇到的小问题

    su root认证失败:sudo passwd root,然后设置新密码. 重装linux导致g++显示已安装,但无法使用:将"系统设置"/"软件源"中所有更新 ...

  2. 学习MongoDB 三: MongoDB无法启动的解决方法

    一简介 我们之前介绍了MongoDB入门(安装与配置),我们今天在打开MongDB时,我们先运行cmd.exe进入dos命令界面,然后进入cd  D:\mongodb\bin目录下,启动服务或者mon ...

  3. catpcha

    生成随机验证码: # -*- coding: utf-8 -*- # @Author: huangyong # @Date: 2016-10-29 22:18:38 # @Last Modified ...

  4. python入门-字典

    1 python是使用{}来表示字典 字典是一系列的键值对 alien_0={} 2 访问字典中的值 new_point = alien_0['point'] print("you just ...

  5. leetcode127

    class Solution { public int ladderLength(String beginWord, String endWord, List<String> wordLi ...

  6. leetcode500

    public class Solution { public string[] FindWords(string[] words) { var list1 = new List<char> ...

  7. Delphi RAD Berlin OutputDebugString 输出调试信息

    Delphi RAD Berlin Event Log.OutputDebugString 输出调试信息,仅在win VCL下可以用.OutputDebugString(PChar('hellowor ...

  8. 可视化库-seaborn-单变量绘图(第五天)

    1. sns.distplot 画直方图 import numpy as np import pandas as pd from scipy import stats, integrate impor ...

  9. Haskell语言学习笔记(59)Bitraversable

    Bitraversable class (Bifunctor t, Bifoldable t) => Bitraversable t where bitraverse :: Applicativ ...

  10. ubuntu wifi连接不上或经常断网,重启就好 [ 转]

    转自 http://blog.csdn.net/chinabing/article/details/47184093 问题描述:最近安装了win7和ubuntu 14.04.2双系统,每次进入ubun ...