- 浏览: 705977 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (272)
- Struts1.x (7)
- 事务 (2)
- Hibernate (11)
- 数据库 (14)
- JavaScript&Ajax (43)
- JSP&Servlet (2)
- Flex (1)
- 其它 (9)
- Java (22)
- 框架集成 (1)
- WebService (3)
- Tomcat (3)
- 加密和安全登录 (13)
- 基于原型的JavaScript (0)
- JavaDoc和Java编码规范 (3)
- CAS (1)
- 加密 (1)
- Axis2 (10)
- Ext2.x (3)
- SSH整合 (2)
- Ext (0)
- 正则表达式 (1)
- 设计模式 (4)
- 对象序列化技术 (3)
- CVS (2)
- Struts2 (6)
- Spring 2.x (7)
- Spring Security (2)
- Java 课程 (20)
- 程序员之死 (1)
- 软件测试 (6)
- UML (5)
- NetBeans (1)
- cxf (1)
- JMS (13)
- 设计 (5)
- ibatis2.x (3)
- Oracle (1)
- WebSphere (7)
- 概要设计 (1)
- DB2 (10)
- PowerDesigner (0)
- 软件工程 (5)
- rose (1)
- EA (1)
- LDAP (7)
- Portal&Portlet (3)
- MQ (10)
- ESB (4)
- EJB (2)
- JBoss (2)
最新评论
-
typeRos:
只有配置文件,没有代码么大神
Spring实现IBMMQ的JMS消息发布/订阅模式 -
panamera:
如果ActiveMQ服务器没有启动,这个时候消息生产者使用Jm ...
Spring JMSTemplate 与 JMS 原生API比较 -
lian819:
顶1楼, 引用文件, 配置属性, 太方便了
EXTJS 同步和异步请求 -
wilhard:
说得清楚明白
<%@ include file=""%>与<jsp:include page=""/>区别 -
刘琛颖:
总结的很好。受益了
javascript 父窗口(父页面)— 子窗口 (子页面)互相调用的方法
JMSUtil与Spring JmsTemplate的对比
Author:信仰
Date:2012-4-20
未完待续,截止日期2012-4-20
从以下几方面比较JMSUtil和Spring JmsTemplate
l 对JNDI的支持
l 对ConnectionFactory、Connection、Destination、Session、MessageProducer、MessageConsumer对象的处理
l 对事务的处理
l 不同类型的消息处理
l 异常处理
|
Spring |
JMSUtil |
对JNDI的支持 |
支持,可配置,可编码 |
支持,只能编码 |
对ConnectionFactory、 Connection、 Destination、 Session、 MessageProducer、 MessageConsumer对象的处理 |
配置 |
编码 |
对事务的处理 |
配置 |
编码 |
对不同类型消息处理 |
自动转换 |
编码转换 |
异常处理 |
运行时异常,无需写try…catch |
检查异常,必须写try…catch |
1. 对JNDI的支持
两者都支持JNDI和非JNDI方式。两者的JNDI名称都是在XML中配置完成的,这一点上两者不存在谁更有优势。
1.1. Spring对JNDI的支持
1.1.1. Spring JMS 实现
JNDI 查询的 JNDI 模板配置
<bean id="jndiTemplate" class="org.springframework.jndi.JndiTemplate">
<property name="environment">
<props>
<prop key="java.naming.factory.initial">
com.ibm.websphere.naming.WsnInitialContextFactory
</prop>
<prop key="java.naming.provider.url">
iiop://127.0.0.1:2813/
</prop>
</props>
</property>
</bean>
通过 JNDI 配置 JMS 连接工厂
<bean id="internalJmsQueueConnectionFactory"
class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiTemplate">
<ref bean="jndiTemplate"/>
</property>
<property name="jndiName">
<value>MQ_JMS_MANAGER</value>
</property>
</bean>
JMS 模板配置
<bean id="jmsQueueTemplate" class="org.springframework.jms.core.JmsTemplate102">
<property name="connectionFactory">
<ref bean="internalJmsQueueConnectionFactory"/>
</property>
<property name="destinationResolver">
<ref bean="jmsDestinationResolver"/>
</property>
<property name="pubSubDomain">
<value>false</value>
</property>
<property name="receiveTimeout">
<value>20000</value>
</property>
</bean>
把 JmsTemplate 绑定到应用程序中
<bean id="jmsSender" class="springexample.client.JMSSender">
<property name="jmsTemplate102">
<ref bean="jmsQueueTemplate"/>
</property>
</bean>
<bean id="jmsReceiver" class="springexample.client.JMSReceiver">
<property name="jmsTemplate102">
<ref bean="jmsQueueTemplate"/>
</property>
</bean>
用 JmsTemplate 发送 JMS 消息的 JMSSender
public class JMSSender
{
private JmsTemplate102 jmsTemplate102;
public JmsTemplate102 getJmsTemplate102()
{
return jmsTemplate102;
}
public void setJmsTemplate102(JmsTemplate102 jmsTemplate102)
{
this.jmsTemplate102 = jmsTemplate102;
}
public void sendMesage()
{
jmsTemplate102.send("JMS_RequestResponseQueue", new MessageCreator()
{
public Message createMessage(Session session) throws JMSException
{
return session.createTextMessage("This is a sample message");
}
});
}
}
用 JmsTemplate 检索 JMS 消息的 JMSReceiver(同步接收)
public class JMSReceiver
{
private JmsTemplate102 jmsTemplate102;
public JmsTemplate102 getJmsTemplate102()
{
return jmsTemplate102;
}
public void setJmsTemplate102(JmsTemplate102 jmsTemplate102)
{
this.jmsTemplate102 = jmsTemplate102;
}
public void processMessage()
{
Message msg = jmsTemplate102.receive("JMS_RequestResponseQueue");
try
{
TextMessage textMessage = (TextMessage) msg;
if ( msg != null )
{
System.out.println(" Message Received -->" + textMessage.getText());
}
}
catch ( Exception e )
{
e.printStackTrace();
}
}
}
1.2. JMSUtil对JNDI的支持
1.2.1. JMSUtil的实现
XML配置:
<bean id="MsgData_1.0_0001" class="com.cfcc.tips.common.data.MsgData">
<property name="qcfName"><!— 连接工厂JNDI的名字 -->
<value>${jms.logQueueConFactory}</value>
</property>
<property name="outputQ"><!— 队列名 -->
<value>${jms.errLogQueueName}</value>
</property>
<property name="expirationTime"><!— 过期时间 -->
<value>0</value>
</property>
<property name="confMode"><!— 优先级 -->
<value>1</value>
</property>
</bean>
JMSUtil中发送消息报文和对象报文的方法:
public static void putTextMessage(MsgData msgData, boolean transacted) throwsMessageException
{
……
ConnectionFactory connectionFactory = null;
Connection connection = null;
Session session = null;
Destination destination = null;
MessageProducer messageProducer = null;
try
{
connectionFactory = (ConnectionFactory)
LocalContext.lookup(msgData.getQcfName(), true);
destination = (Destination) LocalContext.lookup(msgData.getOutputQ, false);
connection = connectionFactory.createConnection();
session = connection.createSession(transacted, Session.AUTO_ACKNOWLEDGE);
messageProducer = session.createProducer(destination);
// 修改为 二进制 ,字符集为可配置项,缺省为 GBK
BytesMessage message = session.createBytesMessage();
if (msgData.getExpirationTime() != null)
{
messageProducer
.setTimeToLive(msgData.getExpirationTime().longValue());
}
……
message
.writeBytes(msgData.getMsg()
.getBytes(MtoFactory.getInstance().getCharsetName()));
}
catch ( JMSException e1 )
{
String errorMsg = "发送消息失败:错误码" + e1.getErrorCode() + ",错误原因:" + e1.getMessage();
……
}
catch (NamingException e1)
{
String errorMsg = "发送消息失败,查找对应的资源未找到,错误原因:" + e1.getMessage();
……
}
catch ( UnsupportedEncodingException ue )
{
String errorMsg = "发送消息失败,不支持的字符集: " + MtoFactory.getInstance().getCharsetName();
log.error(errorMsg, ue);
throw new MessageException(errorMsg, ue);
}
catch (RuntimeException e)
{
String errorMsg = "发送消息失败:" + e.getMessage();
……
}
finally
{
if ( connection != null )
{
if( messageProducer != null )
{
try
{
messageProducer.close();
}
catch ( JMSException e2 )
{
log.error("关闭messageProducer异常", e2);
}
}
if( session != null )
{
try
{
session.close();
}
catch ( JMSException e2 )
{
log.error("关闭session异常", e2);
}
}
try
{
connection.close();
}
catch ( JMSException e2 )
{
log.error("关闭connection异常", e2);
}
}
}
}
/**
* 发送一条对象报文,将一个对象放入队列中
*
* @param qcfName
* 连接工厂名
* @param outputQ
* 队列名
* @param obj
* 要发送的对象
* @param transacted 是否参与事务
* @throws MessageException
*/
public static void putObjectMessage(String qcfName, String outputQ, Serializable obj,boolean transacted) throws MessageException
{
ConnectionFactory connectionFactory = null;
Connection connection = null;
Session session = null;
Destination destination = null;
MessageProducer messageProducer = null;
try
{
connectionFactory = (ConnectionFactory) LocalContext.lookup(qcfName, true);
destination = (Destination) LocalContext.lookup(outputQ, false);
connection = connectionFactory.createConnection();
session = connection.createSession(transacted, Session.AUTO_ACKNOWLEDGE);
messageProducer = session.createProducer(destination);
ObjectMessage objmsg = session.createObjectMessage(obj);
objmsg.setJMSType("transfer");
messageProducer.send(objmsg);
}
catch ( JMSException e1 )
{
String errorMsg = "发送消息失败:错误码" + e1.getErrorCode() + ",错误原因:" + e1.getMessage();
……
}
catch (NamingException e1)
{
String errorMsg = "发送消息失败,查找对应的资源未找到,错误原因:" + e1.getMessage();
……
}
catch ( UnsupportedEncodingException ue )
{
String errorMsg = "发送消息失败,不支持的字符集: " + MtoFactory.getInstance().getCharsetName();
log.error(errorMsg, ue);
throw new MessageException(errorMsg, ue);
}
catch (RuntimeException e)
{
String errorMsg = "发送消息失败:" + e.getMessage();
……
}
finally
{
if ( connection != null )
{
if( messageProducer != null )
{
try
{
messageProducer.close();
}
catch ( JMSException e2 )
{
log.error("关闭messageProducer异常", e2);
}
}
if( session != null )
{
try
{
session.close();
}
catch ( JMSException e2 )
{
log.error("关闭session异常", e2);
}
}
try
{
connection.close();
}
catch ( JMSException e2 )
{
log.error("关闭connection异常", e2);
}
}
}
}
2. 对ConnectionFactory、Connection、Destination、Session、MessageProducer、MessageConsumer的处理
Spring对打开和关闭连接的处理由容器控制,而JMS打开和关闭连接的处理由应用来控制。
2.1. JMSUtil对上述对象的处理
关闭上述对象:
finally
{
if ( connection != null )
{
if( messageProducer != null )
{
try
{
messageProducer.close();
}
catch ( JMSException e2 )
{
log.error("关闭messageProducer异常", e2);
}
}
if( session != null )
{
try
{
session.close();
}
catch ( JMSException e2 )
{
log.error("关闭session异常", e2);
}
}
try
{
connection.close();
}
catch ( JMSException e2 )
{
log.error("关闭connection异常", e2);
}
}
}
3. 对事务的处理
3.1. Spring JMSTemplate对事物的处理方式
3.1.1. 本地事务
Spring为JMS提供了本地事务管理的能力,JMS事务管理器和数据库事务管理器都是PlatformTransactionManager接口的实现类,Spring的org.springframework.jms.connection包提供了用于管理JMS本地事务JmsTransactionManager事务管理器,JMS1.0.2则对应JmsTransactionManager102。
<bean id=”transactionManager”
class=”org.springframework.jms.connection.JmsTransactionManager”>
<property name=”connectionFactory” ref=” internalJmsQueueConnectionFactory”/>
</bean>
在进行标准的Spring事务配置后,就能够管理那些基于JmsTemplate编写的JMS处理类。对于那些未基于JmsTemplate编写的JMS处理类,可以让消息监听器容器对它们进行事务管理。DefaultMessageListenerContainer和ServerSessionMessageListenerContainer都支持通过消息监听器使用JMS事务,不过必须为他们提供一个事务管理器,如下配置:
<!— 事务管理器 -->
<bean id=”transactionManager”
class=”org.springframework.jms.connection.JmsTransactionManager”>
<property name=”connectionFactory” ref=” internalJmsQueueConnectionFactory”/>
</bean>
<!—消息监听器容器 -->
<bean id=”listenerContainer”
class=”org.springframeword.jms.listener.DefaultMessageListenerContainer”>
<property name=”transactionManager” ref=”transactionManager”/>
</bean>
3.1.2. JTA事务
启用JTA事务后,用户可以让数据库操作、JMS操作以及其它符合JTA标准的操作工作在同一个全局事务中。
对于JMS来说,用户必须从Java EE的JNDI中获取XA支持的JMS ConnectionFactory。
对于Spring配置来说,JTA全局事务和本地事务的差别并不大,用户只需要声明一个JtaTransactionManager事务管理器,将事务委托给Java EE应用服务器就可以了。当然,ConnectionFactory必须使用XA支持的JMSConnectionFactory。
下面是让一个数据源和一个JMSConnectionFactory工作于同一个JTA事务的具体配置:
<jee:jndi-lookup id=”jdbcDataSource” jndi-name=”java:comp/env/jdbc/order”/>
<jee:jndi-lookup id=”jmsConnFactory” jndi-name=”java:comp/env/jms/mail”/>
<bean id=”transactionManageer”
class=”org.springframework.transaction.jta.JtaTransactionManager”/>
3.2. JMSUtil对事物的处理方式
3.2.1. 本地事务
在Session可以控制交易,首选Session要定义成transacted,然后通过调用commit或rollback来提交或者回滚事务。
QueueSession queueSession
= connection.createQueueSession(boolean transacted, int acknowledgeMode);
TopicSession topicSession
= connection.createTopicSession(Boolean transacted, int acknowledgeMode);
Session.commit();
Session.rollback()
注意:如果transacted = true,则acknowledgeMode的值便无关紧要。
3.2.2. JTA事务
还不太了解……
4. 不同类型的消息的处理
JMS有多钟类型的消息:
l javax.jms.TextMessage
l javax.jms.MapMessage
l javax.jms.ObjectMessage
l javax.jms.BytesMessage
4.1. Spring使用消息转换器发送/接收消息
Spring将POJO和JMS消息的双向转换工作抽象到MessageConverter中,在JmsTemplate中提供了几个convertAndSend()和receiveAndConvert()方法,这些方法自动使用MessageConverter完成消息的转换工作。
4.1.1. 消息转换器
在org.springframework.jms.support.converter包中,Spring提供了消息转换器的支持,首先看一下MessageConverter接口的两个方法:
l Object fromMessage(Message message)
l Message toMessage(Object object, Session session)
MessageConverter接口的目的是为了向调用者屏蔽JMS细节,在JMS之上搭建的一个隔离层,这样调用者可以直接发送和接收POJO,而不是发送和接收JMS相关消息,调用者的程序将得到进一步简化。
JMS消息类型 |
POJO类型 |
javax.jms.TextMessage |
String |
javax.jms.MapMessage |
java.util.Map |
javax.jms.ObjectMessage |
java.io.Serializable |
javax.jms.BytesMessage |
byte[] bytes |
当转换发生错误时,Spring将抛出MessageConversionException异常,该异常是org.springframework.jms.JmsException的子类。
JmsTemplate和JmsTemplate102分别使用SimpleMessageConverter和SimpleMessageConverter102作为默认的消息转换器。用户也可以通过实现MessageConverter定义自己的消息转换器,并在配置JmsTemplate时通过messageConverter属性指定自己的消息转换器。
4.1.2. 发送POJO消息
4.1.2.1. 将POJO简单地映射为Message对象发送
假设User是一个POJO,其结构如下:
package com.baobaotao.domain;
……
public class User implement Serializable
{
private String username;
private String userId;
private String email;
private int level;
// 省略get/setter
}
这个POJO必须实现Serializable接口,以便可以将对象序列化后作为消息发送,除此以外没有任何其他的要求。
将User作为JMS消息发送的操作仅需要一行简单的代码就可以完成:
package com.baobaotao.jms;
……
import com.baobaotao.domain.User;
public class MessageSender extends JmsGatewaySupport
{
……
public void sendUserMsg(User user)
{
// 发送User对象
super.getJmsTemplate.convertAndSend(“userMsgQ”, user);
}
}
JmsTemplate提供了几个重载版本的convertAndSend()方法:
l convertAndSend
public void convertAndSend(Object message)
throws JmsException
Send the given object to the default destination, converting the object to a JMS message with a configured MessageConverter.
This will only work with a default destination specified!
Specified by:
convertAndSend in interface JmsOperations
Parameters:
message - the object to convert to a message
Throws:
JmsException - converted checked JMSException to unchecked
l convertAndSend
public void convertAndSend(Destination destination,
Object message)
throws JmsException
Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.
Specified by:
convertAndSend in interface JmsOperations
Parameters:
destination - the destination to send this message to
message - the object to convert to a message
Throws:
JmsException - converted checked JMSException to unchecked
l convertAndSend
public void convertAndSend(String destinationName,
Object message)
throws JmsException
Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter.
Specified by:
convertAndSend in interface JmsOperations
Parameters:
destinationName - the name of the destination to send this message to (to be resolved to an actual destination by a DestinationResolver)
message - the object to convert to a message
Throws:
JmsException - checked JMSException converted to unchecked
public void convertAndSend(Object message,
MessagePostProcessor postProcessor)
throws JmsException
Send the given object to the default destination, converting the object to a JMS message with a configured MessageConverter. The MessagePostProcessor callback allows for modification of the message after conversion.
This will only work with a default destination specified!
Specified by:
convertAndSend in interface JmsOperations
Parameters:
message - the object to convert to a message
postProcessor - the callback to modify the message
Throws:
JmsException - checked JMSException converted to unchecked
public void convertAndSend(Destination destination,
Object message,
MessagePostProcessor postProcessor)
throws JmsException
Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter. The MessagePostProcessor callback allows for modification of the message after conversion.
Specified by:
convertAndSend in interface JmsOperations
Parameters:
destination - the destination to send this message to
message - the object to convert to a message
postProcessor - the callback to modify the message
Throws:
JmsException - checked JMSException converted to unchecked
public void convertAndSend(String destinationName,
Object message,
MessagePostProcessor postProcessor)
throws JmsException
Send the given object to the specified destination, converting the object to a JMS message with a configured MessageConverter. The MessagePostProcessor callback allows for modification of the message after conversion.
Specified by:
convertAndSend in interface JmsOperations
Parameters:
destinationName - the name of the destination to send this message to (to be resolved to an actual destination by a DestinationResolver)
message - the object to convert to a message.
postProcessor - the callback to modify the message
Throws:
JmsException - checked JMSException converted to unchecked
4.1.2.2. 将POJO映射为Message后进行后置处理
通过以上方法发送POJO,JmsTemplate仅会按照简单的映射方式发送JMS消息,如果我们需要在此基础上进一步设置Message的Header和Properties部分的值,一种方法是编写自己的消息转换器达到目的,还有一种更好的方法是使用Spring的org.springframework.jms.core.MessagePostProcessor回调接口。JmsTemplate在使用MessageConverter将POJO转换为JMS消息后以及发送消息前,将调用MessagePostProcessor对JMS消息进行后置加工处理。因此,我们有机会通过一个自定义的MessagePostProcessor回调接口对JMS消息对象进行“修正性”工作。
下面,我们在User转换为ObjectMessage后,为消息对象指定过期时间并设置一个属性:
package com.baobaotao.jms;
……
import org.springframework。jms.core.MessagePostProcessor;
public class MessageSender extends JmsGatewaySupport
{
public void sendUserMsg2(final User user)
{
getJmsTemplate().convertAndSend(“userMsgQ”,
user,
new MessagePostProcessor()
{
public Message postProcessMessage(Message message) throws JMSException
{
message.setJMSExpiration(System.currentTimeMillis() + 60 * 60 * 1000); //设置过期时间:一小时后过期
message.setIntProperty(“level”, user.getLevel()); // 设置一个属性
}
});
}
}
4.1.3. 接收POJO消息
4.2. JMSUtil必须直接实例化不同类型的消息对象
4.2.1. 发送消息
例如,如果要发送的消息是javax.jms.TextMessage类型,代码如下所示:
TextMessage txtMsg = queueSession.createTextMessage(obj);
messageProducer.send(txtMsg);
4.2.2. 接收消息
例如,如果要接收的消息是javax.jms.TextMessage类型,代码如下所示:
Message m = messageConsumer.receive(1000 * 1);
if ( m instanceof TextMessage )
{
TextMessage textMessage = (TextMessage) m;
System.out.println(textMessage.getText());
}
5. 异常处理
5.1. Spring JmsTemplate 运行时异常
JMS的异常都是检查型异常,使用原生JMS API,用户需要提供繁琐的异常捕获代码。而Spring将检查型异常转化为运行期异常。
Spring在org.springframework.jms包为javax.jms包中所有的异常类提供了类型转换的镜像实现。如:org.springframework.jms.IllegalStateException对应javax.jms.IllegalStateExceptipn;org.springframework.jms.InvalidClientIDException对应javax.jms.InvalidClientIDException等。Spring中所有JMS相关的异常都继承于JmsException类。
此外,Spring还提供了一些特定的JMS异常类:
l DestinationResolutionException:Spring允许通过简单的字符串指定消息地址,DestinationResolver在解析消息地址发生错误时抛出异常;
l SynchedLocalTransactionFailedException:如果在同步本地事务发生异常时抛出该异常,由于事务已经结束后,再次尝试同步事务时会发生这个异常;
l UncategorizedJmsException:任何未被归类的其他类型一场。
5.2. JMSUtil检查异常
- JMSUtil与Spring_JMS的对比.rar (26.7 KB)
- 下载次数: 96
评论
发表评论
-
EJB3.0中的MessageDrivenBean
2012-06-25 15:56 1021EJB3.0中MessageDrivenBean: ... -
Spring实现IBMMQ的JMS消息发布/订阅模式
2012-06-21 16:08 3191<?xml version="1.0" ... -
WAS7.0 + MQ 7.0 + JNDI 最简配置和收发示例
2012-04-12 17:29 57481、MQ上新建QM和MQ Q ... -
Spring 定时器时间配置
2011-09-02 21:28 3389Quartz在Spring中动态设置cronExp ... -
Spring-IOC,各种集合类以及数组的注入
2011-09-02 20:01 1009package 集合类注入; public class So ... -
Spring 之 Scope篇
2011-08-31 09:09 764摘自《Spring 解密》 scope用来声明IOC容器中的对 ... -
使用 Spring 2.5 注释驱动的 IoC 功能
2011-03-07 19:14 1009陈 雄华 (quickselect@163.com), 技术 ... -
ActiveMQ实践:松耦合和ActiveMQ
2011-01-10 10:28 19532010-10-28 作者:B ... -
使用Spring JMS轻松实现异步消息传递
2011-01-07 17:31 3130异步进程通信是面向服务架构(SOA)一个重要的组成部分 ... -
Apache ActiveMQ教程(六)
2011-01-07 16:59 1897Apache ActiveMQ教程(六) 4 ... -
Apache ActiveMQ教程(五)
2011-01-07 16:58 1553Apache ActiveMQ教程(五) 2008-0 ... -
Apache ActiveMQ教程(四)
2011-01-07 16:57 1682七、ActiveMQ与Tomcat整合 说明:To ... -
Apache ActiveMQ教程(三)
2011-01-07 16:57 1266Apache ActiveMQ教程(三) 2008-0 ... -
Apache ActiveMQ教程(二)
2011-01-07 16:56 1561Apache ActiveMQ教程(二) 2008-0 ... -
Apache ActiveMQ教程(一)
2011-01-07 16:43 1940Apache ActiveMQ教程(一) 2008-0 ... -
实战activeMQ
2011-01-07 16:18 1564原文地址:http://www.iteye.com/top ... -
Implementing Spring-based DAOs without callbacks
2010-05-05 10:35 1064~ 附上源码更清楚(部分): package org ...
相关推荐
在本项目中,Spring与WebLogic JMS(Java消息服务)的集成展示了如何在Spring环境中使用消息队列进行通信。 WebLogic JMS是Oracle WebLogic Server提供的消息中间件,它遵循JMS规范,用于在分布式环境中传递消息,...
JMS与Spring之一(用JmsTemplate同步收发消息) JMS(Java Message Service)是一种Java API,用于在两个应用程序之间异步地发送消息。Spring框架提供了对JMS的支持,允许开发者使用JMS template或message listener...
在Spring JMS中,`JmsTemplate`是核心组件,它有两种实现:JmsTemplate(基于JMS 1.1 API)和JmsTemplate102(基于JMS 1.0.2 API)。在示例应用程序中,通常会选择与目标JMS提供者兼容的版本。`JmsTemplate`通过回调...
Spring JMS 模板提供了两个实现,JmsTemplate 类使用 JMS 1.1 API,子类 JmsTemplate102 则使用 JMS 1.0.2 API。我在示例应用程序中使用的是 JmsTemplate102。JMS 模板被用来发送和接收 JMS 消息。Spring 采用回调...
**Spring与JMS消息传递** 在Java世界中,Java Message Service (JMS) 是一个标准接口,用于在分布式环境中发送和接收消息。Spring框架提供了一种简单而强大的方式来集成JMS,使得开发者可以轻松地在应用中实现异步...
在配置Spring JMS时,我们需要指定ActiveMQ服务器的连接工厂,这通常通过Spring的`JmsTemplate`或`MessageListenerContainer`配置完成。 在项目结构上,Spring JMS应用通常包括以下几个关键部分: 1. `pom.xml`:...
Spring通过其`org.springframework.jms`包提供了丰富的API和抽象,使得配置和使用JMS变得更加简单。 整合ActiveMQ和Spring的过程主要涉及以下步骤: 1. **添加依赖**:在项目中引入ActiveMQ和Spring的JMS相关库。...
本文将深入探讨Spring-JMS的基础知识,包括它的核心概念、配置以及如何与ActiveMQ这样的消息中间件进行集成。 **1. JMS简介** Java消息服务(Java Message Service,简称JMS)是一个标准,定义了应用程序如何创建、...
SpringJMS是Spring框架的一部分,它提供了一种与Java消息服务(JMS)进行交互的简单方式。在本文中,我们将深入探讨SpringJMS的基本概念、如何与ActiveMQ集成,以及如何通过示例代码理解其工作原理。 1. **Spring...
在"activemq + jms(原生和集成spring-jms)"的主题中,我们将探讨如何使用ActiveMQ原生API以及结合Spring-JMS框架来实现消息队列的创建与使用,主要涵盖以下几个核心知识点: 1. **ActiveMQ的基本概念**:包括Broker...
Spring JMS框架是Spring项目的一部分,其主要目标是简化Java Message Service (JMS) API的使用,使得开发人员能够更容易地与消息中间件进行交互。通过Spring JMS,开发者可以更加专注于业务逻辑而非底层的消息传递...
6. **JMS模板的配置**:Spring的配置文件中,可以通过`<bean>`标签来配置`JmsTemplate`,设置连接工厂、目的地等属性,使其能与实际的JMS提供者(如ActiveMQ、IBM WebSphere MQ等)对接。 7. **消息驱动的POJO(MDP...
Spring JMS提供了对JMS API的高度封装,简化了消息生产者和消费者的实现,同时也支持事务管理和消息确认机制,极大地提升了开发效率和代码的可维护性。 首先,我们来看看Spring JMS的核心组件。主要包括...
通常,这包括JMS API、一个JMS实现(如Apache ActiveMQ)、Spring核心库和Spring JMS库。 ```xml <!-- Maven 示例 --> <groupId>javax.jms <artifactId>javax.jms-api <version>2.0.1 <groupId>org....
1. **JMS模板(JmsTemplate)**: 这是Spring提供的一个核心工具类,简化了发送和接收JMS消息的过程。它提供了同步和异步发送消息的方法,支持点对点(P2P)和发布/订阅(Pub/Sub)模型。 2. **MessageListener容器*...
Spring集成JMS是Java消息服务(Java Message Service)与Spring框架的结合,它提供了一种在分布式系统中高效处理异步消息传递的方式。Spring通过其强大的IoC(Inversion of Control,控制反转)和AOP(Aspect ...
本文将深入探讨如何在Spring 3.0中整合JMS与ActivemQ,以及它们在实际应用中的关键知识点。 首先,我们要了解Spring对JMS的支持。Spring通过其`org.springframework.jms`包提供了丰富的JMS抽象,简化了JMS的使用。...
3. **Java消息服务API** - `jms.jar` 或 `javax.jms-api.jar`,这是Java标准版提供的JMS API,定义了与消息队列交互的接口和类。 4. **Spring核心模块** - 如 `spring-core.jar`,`spring-context.jar`,这些是...