`

JMS在Spring框架下的应用

阅读更多

    上传通讯薄操作,除了向客户端返回好友列表外,还需要将上传的通讯簿存储到数据库中,以便进行后期数据分析。一开始,我的设计是将通讯薄全部插到数据库后再返回客户端,但经过测试,用户访问速度过慢,于是我就采用多线程处理的方式,单开一个线程,在后台慢慢插去吧,不影响客户端访问速度就行。我对多线程也不是太熟悉,代码设计是参考硕硕的,由于时间紧,也没多思考,虽然用得心里有点不踏实。

    今早刚到公司就被游游责问,“通讯薄存数据库开了多线程,你考虑线程安全了吗”,志东也说,“开了多线程,如果线程池满,怎么办,数据会丢失的。。。”我只能实话实说,当时确实没考虑线程安全问题,代码参考自硕硕。。。志东生气了,“张硕是错的你也抄!”。。。我顿时无语,只怨当时开动线程的时候没多考证一下。唉,痛定思痛,根据志东的建议:不要在Spring的Controller里开多线程,如果想进行异步操作,可使用JMS。。。。

    忙完令人超级蛋疼的LBS的bug,着手对上传通讯薄JMS的优化。看了半下午JMS,照着Demo,JMS算是跑起来了。具体配置下面将详细阐述。

    受教育的一天那。。。有时,犯错,确实会使人进点步。


另:Spring的线程问题,到底怎么个情况,需要好好的搞一搞。线程池?多大?怎么设置的?SPring的线程模型?


    对JMS的一些理解:

    JMS有两种工作模式,vm和tcp,使用vm模式时,不必ActiveMQ服务器。使用tcp时,需要使用ActiveMQ,从而建立Tcp链接。

    ActiveMQ官网下载地址:http://activemq.apache.org/download.html

 

1. 使用jms所需的依赖包

 

    activemq-all-5.3.0.jar

    activemq-web-5.3.0.jar

    geronimo-j2ee-management_1.0_spec-1.0.jar

    geronimo-jms_1.1_spec-1.1.1.jar

    geronimo-jta_1.0.1B_spec-1.0.1.jar

 

2. 搭好Spring环境

 

    略

 

3. 配置

 

    这里主要介绍使用Spring监听来实现异步接受消息。

 

    (1) applicationContext-jms.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:util="http://www.springframework.org/schema/util"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
		http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
	<!-- 消息中介-->
	<bean id="connectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
		<property name="brokerURL" value="vm://localhost"/>
	</bean>
	<!-- 队列目的地-->
	<bean id="myQueue" class="org.apache.activemq.command.ActiveMQQueue">
		<constructor-arg index="0" value="notifyQueue"/>
	</bean>
	<!-- 订阅目的地-->
	<bean id="myTopic" class="org.apache.activemq.command.ActiveMQTopic">
		<constructor-arg index="0" value="notifyTopic"/>
	</bean>
	<bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
		<property name="connectionFactory" ref="connectionFactory"/>
		<!-- 设置默认的消息目的地-->
		<property name="defaultDestination" ref="myQueue"/>
		<!-- 由于receiver方法是同步的,所以我们在这里对接收设置超时时间-->
		<property name="receiveTimeout" value="60000"/>
	</bean>
	
	<!-- 消息发送者-->
	<bean id="producer" class="com.sszd.springjms.JMSProducer">
		<property name="jmsTemplate" ref="jmsTemplate"/>
		<!-- 消息目的地,因为jmsTemplate有默认的了,所以这里可以省略
		<property name="destination" ref=" myQueue "/>-->
	</bean>
	
	<!-- 消息接收监听器用于异步接收消息-->
	<bean class="org.springframework.jms.listener.SimpleMessageListenerContainer">
		<property name="connectionFactory" ref="connectionFactory"/>
		<property name="destination" ref="myQueue"/>
		<!--  <property name="messageListener" ref="studentMDP"/>-->
		<property name="messageListener" ref="pureMDPAdapter"/>
		
	</bean>
	<!-- 消息监听实现方法一 -->
	<bean id="studentMDP" class="com.sszd.springjms.StudentMDP"/>
	
	<!-- 消息监听实现方法二,使用POJO -->
	<bean id="pureMDPAdapter" class="org.springframework.jms.listener.adapter.MessageListenerAdapter">
		<property name="delegate" ref="pureStudentMDP"/>
		<property name="defaultListenerMethod" value="process"/>
	</bean>
	<!-- 消息驱动pojo -->
	<bean id ="pureStudentMDP" class="com.sszd.springjms.PureStudentMDP" >
		<!--可以配置Spring的依赖
		<property name="springOperation" ref="springOperation"/>
		-->
	</bean>
	
</beans>

 

    (2) 消息生产者

 

package com.sszd.springjms;

import javax.jms.JMSException;
import javax.jms.MapMessage;
import javax.jms.Message;
import javax.jms.Session;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.jms.core.MessageCreator;

import com.neu.edu.model.Student;

/**
 * 利用Spring中的JmsTemplate产生消息
 * 
 */
public class JMSProducer {
	private JmsTemplate jmsTemplate;

	public JmsTemplate getJmsTemplate() {
		return jmsTemplate;
	}

	public void setJmsTemplate(JmsTemplate jmsTemplate) {
		this.jmsTemplate = jmsTemplate;
	}

	// 传送一个Student 对象(重写了toString()方法)
	public void send(final Student student) {
		this.jmsTemplate.send(new MessageCreator() {
			public Message createMessage(Session session) throws JMSException {
				MapMessage message = session.createMapMessage();
				message.setString("key1", student.getName());
				message.setString("key2", student.getAge());
                                //也可以直接发送对象,对象必须是可序列化的
                                //ObjectMessage message = session.createObjectMessage();
                                //message.setObject(student);
				return message;
			}
		});
	}
}

 

    (3) 消息接受监听器实现

 

    方法一:

 

package com.sszd.springjms;

import javax.jms.JMSException;
import javax.jms.MapMessage;
import javax.jms.Message;
import javax.jms.MessageListener;

import com.neu.edu.model.Student;

/**
 * 消息监听类
 * */
public class StudentMDP implements MessageListener {
	public void onMessage(Message message) {
		MapMessage mapMessage = (MapMessage) message;
		Student student = new Student();
		try {
			student.setName(mapMessage.getString("key1"));
			student.setAge(mapMessage.getString("key2"));
			try {
				Thread.sleep(1000);
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
			System.out.println(student.getName());
		} catch (JMSException e) {
			e.printStackTrace();
		}
	}
}

    

    方法二(使用POJO):

 

package com.sszd.springjms;

import java.util.Map;

import com.neu.edu.model.Student;

/**
 *纯POJO实现消息接收
 * */
public class PureStudentMDP {
	//private PoiDataFromProviderService poiDataFromProviderService;可以添加Spring依赖注入
	public void process(Map map) {
		Student student = new Student();
		student.setName((String) map.get("key1"));
		student.setAge((String) map.get("key2"));
		System.out.println("PureStudentMDP:");
		System.out.println(student);
	}
/*可以直接接收对象
	public void process(Objec obj) {
		Student student = (Student)obj;
		System.out.println(student);
	}
*/

}

 

    (4) 业务层调用及配置

    xml配置

<bean name="jmsLogic" class="com.neu.edu.controllers.JMSLogic">
		<property name="jmsProducer" ref="producer"/>
</bean>

    业务层调用:

        。。。
       private JMSProducer jmsProducer;

	public void upload() {
		。。。
		Student student = new Student();
		for (int i = 0; i < 15; i++) {
			student.setName("zzq" + i);
			student.setAge("25");
			jmsProducer.send(student);
			System.out.println("消息已经发送.....");
		}
	}
        。。。

 

4. 说明

    本示例参考自百度文库的资料(见附件Spring中使用JMS.pdf http://wenku.baidu.com/view/98242d75f46527d3240ce0cc.html ),关于JMS的深入学习,将在后续章节补充。

 

http://www.blogjava.net/heyang/archive/2009/09/24/296254.html

  • jms.rar (5.3 MB)
  • 下载次数: 396
分享到:
评论

相关推荐

    JMS整合Spring实例

    在Spring框架中,我们可以使用`org.springframework.jms`包中的类和接口来处理JMS相关的任务。下面将详细介绍如何整合JMS与Spring,以及一个简单的实例。 ### 1. 添加依赖 首先,你需要在项目的构建文件(如Maven...

    jms整合spring工程

    本项目"jms整合spring工程"是一个已经准备就绪的Java工程,它展示了如何在Spring框架中集成JMS,以便利用消息队列进行通信。主要依赖的是Apache ActiveMQ,这是一款流行的开源JMS提供者,能够实现高效、可靠的实时...

    spring_jms

    在IT行业中,Spring框架是Java应用开发的基石,它提供了丰富的功能来简化企业级应用的构建。Spring JMS(Java Message Service)是Spring框架的一部分,专门用于集成JMS消息传递系统,以实现异步通信和解耦应用程序...

    JMS_Spring集成所需jar

    Spring框架是Java开发中的一个核心库,提供了丰富的功能,包括依赖注入、AOP(面向切面编程)、数据访问以及Web应用支持等。Spring也提供了对JMS的全面支持,简化了在Spring应用中集成和使用JMS的过程。 在"JMS_...

    Spring框架参考手册

    - Spring框架适用于各种类型的应用程序,无论是简单的Web应用还是复杂的企业级应用,都能找到合适的解决方案。 #### 二、Spring框架依赖管理和命名约定 - **2.1 依赖管理与命名约定** - Spring框架采用了明确的...

    spring框架教程 PPT

    本教程旨在深入讲解Spring框架的核心概念、主要功能以及如何在实际项目中应用。 一、Spring框架概述 Spring框架由Rod Johnson创建,它简化了Java企业级应用程序的开发。通过提供一种管理对象生命周期和装配方式,...

    weblogic与jms+spring

    JMS 是一个为Java平台设计的消息中间件接口,它允许应用程序通过消息传递进行通信,而Spring框架则提供了一种便捷的方式来管理应用程序的配置和服务,包括对JMS的集成。 **WebLogic的安装与配置:** 1. 下载...

    jms-spring.zip

    Spring框架,作为一个广泛使用的Java企业级应用开发框架,提供了与JMS的深度集成,便于开发者轻松实现消息驱动的组件。 在Spring中,JMS的集成主要依赖于`spring-jms`模块,该模块提供了对各种JMS供应商的抽象和...

    SSH和Spring框架简介

    SSH和Spring框架是Java开发中的两个重要工具,它们在企业级应用开发中占据了核心地位。SSH,是由Struts2、Spring和Hibernate三个框架组成的集成解决方案,而Spring则是一个全面的后端开发框架,包含了多种功能模块。...

    SpringJMS示例代码

    SpringJMS是Spring框架的一部分,它提供了一种与Java消息服务(JMS)进行交互的简单方式。在本文中,我们将深入探讨SpringJMS的基本概念、如何与ActiveMQ集成,以及如何通过示例代码理解其工作原理。 1. **Spring...

    ActiveMQ学习笔记(二) JMS与Spring

    在本篇ActiveMQ学习笔记中,我们将探讨JMS(Java Message Service)与Spring框架的集成。JMS是一种标准API,用于在分布式环境中进行异步消息传递,而Spring框架则为开发人员提供了强大的依赖注入和管理服务的能力。...

    mq-jms-spring:协助MQ JMS与Spring框架集成的组件

    该库包含: 用于应用程序的mq-jms-spring-boot-starter安装及使用该软件包的编译版本可以从Maven Central自动下载。 有关本地修改和自行构建的信息,请参见Spring Boot应用程序Gradle: repositories { mavenLocal...

    Spring框架jar包全

    4. **Spring Context**:这是Spring框架的上下文模块,它扩展了Core Container的概念,引入了环境感知能力,如bean的国际化、事件传播以及对其他Spring模块(如JDBC、JMS、JMX等)的支持。 5. **Spring JDBC**:...

    spring框架入门到熟练

    Spring框架是一款开源的企业级应用框架,旨在解决企业级应用开发中的复杂性问题。它最初由Rod Johnson创建,并于2004年发布了第一个版本。Spring框架的核心优势在于其轻量级、松耦合的设计理念,这使得它能够有效地...

    Spring框架高级编程源代码

    《Spring框架高级编程源代码》第十章主要涵盖了Spring框架中的核心特性和高级应用,这些内容对于深入理解Spring以及提升开发效率至关重要。在这个章节中,我们可以期待学习到以下几个关键知识点: 1. **AOP(面向切...

    spring-jms入门

    Spring-JMS是Spring框架的一部分,专门用于处理Java消息服务(JMS)的集成。它提供了一个简单的API,使得开发者能够方便地在应用中使用消息传递功能。本文将深入探讨Spring-JMS的基础知识,包括它的核心概念、配置...

    spring1框架的简单应用介绍

    Spring框架是中国最流行的Java企业级应用开发框架之一,它的出现极大地简化了Java应用程序的构建,尤其是在服务端。Spring的核心设计理念是依赖注入(Dependency Injection,DI)和面向切面编程(Aspect-Oriented ...

Global site tag (gtag.js) - Google Analytics