博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JMS解决系统间通信问题
阅读量:6697 次
发布时间:2019-06-25

本文共 6654 字,大约阅读时间需要 22 分钟。

近期在给公司项目做二次重构,将原来庞大的系统拆分成几个小系统。系统与系统之间通过接口调用,系统间通信有非常多方式,如系统间通信接口做成请求controller,只是这样不方便也不安全,经常使用的方式是使用rpc技术,能够使用webservices技术等等。因为我的架构是使用spring,并且spring在集成这块做的非常不错。如hessian,blurp,webservices。httpinvoke,rmi,jms等,我这里採用的是jms技术。

废话不多说间代码。

场景描写叙述:A系统须要调用B系统提供的接口

1、B系统提供的接口

a、创建接口

package com.maimai.test.jmsservice;import com.maimai.db_bean.User;public interface AlertService {		public String sendStr(String str);		public void print_r(String str);		public User findById(long id);	}
b、创建接口实现类

package com.maimai.test.jmsservice;import org.springframework.beans.factory.annotation.Autowired;import com.maimai.dao.UserDao;import com.maimai.db_bean.User;public class AlertServiceImpl implements AlertService {	@Autowired	private UserDao userDao;	public String sendStr(final String str) {				System.out.println("========收到的信息======"+str+"================");		return "来自服务端的返回信息,我接收到数据了 ...";	}		public void print_r(String str){		System.out.println("========收到的信息======"+str+"================");	}	public User findById(long id) {		User user = userDao.findById(id);		return user;	}	}
c、配置amq和jms

amq配置

jms配置

//备注这里仅仅须要destination="spitter.alert.queue"

d、将接口导出成jms服务配置

备注:此刻B系统提供接口准备工作做完了,接下来是A系统的工作

2、A系统调用B系统提供的服务

a、将B系统中接口所在包拷贝到A系统中。或者将B系统接口打包jar导入到A系统中

备注:仅仅须要将com.maimai.test.jmsservice.AlertService这个复制过来就可以,不须要实现类

b、在A系统中配置amq

配置amq

配置jms工厂

备注:到此,我们都已经配置好了,接下来是A系统開始调用B系统提供的接口服务

package com.maimai.action;import java.io.UnsupportedEncodingException;import java.util.ArrayList;import java.util.HashMap;import java.util.List;import java.util.Map;import javax.servlet.http.HttpServletRequest;import org.apache.struts2.interceptor.ServletRequestAware;import org.springframework.beans.factory.annotation.Autowired;import com.maimai.db_bean.Product;import com.maimai.db_bean.ProductBrand;import com.maimai.db_bean.ProductCategory;import com.maimai.db_bean.ProductCommentRecord;import com.maimai.db_bean.ProductDetail;import com.maimai.db_bean.ProductLimitedTime;import com.maimai.db_bean.ProductType;import com.maimai.db_bean.ScannedProduct;import com.maimai.db_bean.User;import com.maimai.db_bean.HotProduct;import com.maimai.db_bean.UserShop;import com.maimai.engine.AfterSaleEngine;import com.maimai.engine.DealEngine;import com.maimai.engine.ProductEngine;import com.maimai.engine.UserEngine;import com.maimai.service.UserShopService;import com.maimai.test.jmsservice.AlertService;import com.maimai.util.Constant;import com.maimai.util.IKAnalyzerUtil;import com.maimai.util.Util;import com.opensymphony.xwork2.ActionSupport;/** * 商品Action * */public class ProductAction extends ActionSupport implements ServletRequestAware {	/**	 * 序列号	 */	private static final long serialVersionUID = 495219298210322438L;		private HttpServletRequest request;	// 商品engine	@Autowired	private ProductEngine productEngine; 		// 用户engine	@Autowired	private UserEngine userEngine;		// 交易Engine	@Autowired	private DealEngine dealEngine;		// 售后服务Engine	@Autowired	private AfterSaleEngine afterSaleEngine;		@Autowired	private UserShopService userShopService;		@Autowired	AlertService alertService;  		/************	 * 进入商品具体页	 * */	public String ToProductDetail(){		// 获取商品id		String str = this.alertService.sendStr("你好,中国"); //调用B系统接口		System.out.println("=================="+str+"====================");		this.alertService.print_r("你好,哈哈哈。成功了!!!!");   //调用B系统接口		User user1 = this.alertService.findById(10);    //调用B系统接口		System.out.println(user1.toString());				long productId = Long.parseLong(this.request.getParameter("pid"));		// 依据id获取商品		Product product = this.productEngine.getProductById(productId);		if (Util.isNullOrEmpty(product)) {			return "ProductError";		}		this.request.setAttribute("product", product);		//added by sam 店铺查询		UserShop userShop = new UserShop();		if(product.getUserId() != 0 ){			userShop = this.userShopService.findByUserId(product.getUserId());		}		this.request.setAttribute("userShop", userShop);		//ended by sam				// 依据商品所属分类id获取商品列表		List
sameCategoryProducts = this.productEngine.getProductsByCategoryId(product.getCategoryId(), 1, 5); this.request.setAttribute("sameCategoryProducts", sameCategoryProducts); /** 记录浏览了此商品 **/ try { // 获取当前登录用户 User user = this.userEngine.getCurrentuser(); ScannedProduct scannedProduct = new ScannedProduct(); scannedProduct.setProductId(productId); scannedProduct.setUserId(user.getId()); this.productEngine.getProductService().saveScannedProduct(scannedProduct); } catch (Exception e) { //e.printStackTrace(); } return "ToProductDetail"; } }
A系统调用B系统成功信息例如以下:

 ========收到的信息======你好,中国================

2015-12-31 09:35:52,261 [org.springframework.jms.listener.DefaultMessageListenerContainer#2-2] DEBUG [org.springframework.remoting.support.RemoteInvocationTraceInterceptor] - Finished processing of JmsInvokerServiceExporter remote call: com.maimai.test.jmsservice.AlertService.sendStr
 ==================来自服务端的返回信息。我接收到数据了 ...====================

2015-12-31 09:35:52,332 [org.springframework.jms.listener.DefaultMessageListenerContainer#2-2] DEBUG [org.springframework.jms.listener.DefaultMessageListenerContainer] - Received message of type [class org.apache.activemq.command.ActiveMQObjectMessage] from consumer [ActiveMQMessageConsumer { value=ID:PC-20150906SEWA-53438-1451525683864-0:21:1:1, started=true }] of session [ActiveMQSession {id=ID:PC-20150906SEWA-53438-1451525683864-0:21:1,started=true}]
 2015-12-31 09:35:52,333 [org.springframework.jms.listener.DefaultMessageListenerContainer#2-2] DEBUG [org.springframework.remoting.support.RemoteInvocationTraceInterceptor] - Incoming JmsInvokerServiceExporter remote call: com.maimai.test.jmsservice.AlertService.print_r
 ========收到的信息======你好,哈哈哈,成功了!!!!================

 2015-12-31 09:35:52,606 [org.springframework.jms.listener.DefaultMessageListenerContainer#2-2] DEBUG [org.springframework.remoting.support.RemoteInvocationTraceInterceptor] - Finished processing of JmsInvokerServiceExporter remote call: com.maimai.test.jmsservice.AlertService.findById

 User [accountImage=sysImg/user/10/account/account20150810170819.jpg, age=12, email=526713869@qq.com, idCode=34081119, idImageBack=sysImg/user/id/11510411712110199104971114953514853535448575448/11510411712110199104971114953514853535448575448Back.jpg, idImageFore=sysImg/user/id/11510411712110199104971114953514853535448575448/11510411712110199104971114953514853535448575448Fore.png, isLocked=0, loginName=samtest, password=`O怾,u?

攠聉?, qq=526713869, realName=张三, registTime=2015-01-26 09:56:04, sex=f, userType=0, telNum=15305560960, status=0]

转载地址:http://euvoo.baihongyu.com/

你可能感兴趣的文章
打开hibernate文件报警告
查看>>
linux安装IDEA 2017
查看>>
Intellij IDEA 去掉Mapper文件中的背景
查看>>
Docker 安装 mysql
查看>>
阅读笔记《全景探秘游戏设计艺术》
查看>>
C# Json格式字符串
查看>>
sign-up 签约注册
查看>>
基于RDD实现简单的WordCount程序
查看>>
java8的新特性,Collections.sort(排序的List集合)的使用,对list封装Map里面的某个值进行排序...
查看>>
扩展Ubuntu的系统大小
查看>>
javascript闭包传参和事件的循环绑定
查看>>
gbk字库音序对照表
查看>>
js中时间戳转化成时间格式
查看>>
redis的安全问题
查看>>
get dc app
查看>>
form 表单
查看>>
POJ 1012 Joseph
查看>>
Nordic Collegiate Programming Contest 2016
查看>>
基础复习-算法设计基础 | 复杂度计算
查看>>
201671010128 2017-09-17《Java程序设计》之步步深入面向对象
查看>>