hession通信

这里是回忆一下2017年的时候,用到的hession通信,需求是将索道的上位机传感器数据上传到云端,2个client端,向1个server端发送数据,这个模式想对比较简单。
hessian首先是一个RPC框架,基于HTTP协议传输,使用hessian进行二进制序列化,效率高于 WebService 和 Java 自带的序列化。我们知道序列化是便于持久化存储和网络传输,这里再对比一下其他的序列化协议,java序列化框架(protobuf、thrift、kryo、fst、fastjson、Jackson、gson、hessian)性能对比protobuf、thrift、avro对比
每种协议都有特定的场景,hessian可以提升开发效率,dubbo就支持dubbo 支持的9种协议
1 服务端
这个项目采用的springmvc的模式,不像现在springboot这么火

<dependency>
		    <groupId>com.caucho</groupId>
		    <artifactId>hessian</artifactId>
		    <version>4.0.38</version>
		</dependency>

hession的spring配置,想对比较简单,定义接口和实现类即可

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" 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.xsd"
	default-lazy-init="false">
	<description>Spring Hession 服务端配置</description>
	<!-- 同步传感器数据采集 -->
	<bean name="/syncMonitorAutoCollectData" class="org.springframework.remoting.caucho.HessianServiceExporter">
	    <property name="service" ref="syncMonitorAutoCollectDataServiceImpl"/>
	    <property name="serviceInterface" value="com.dzmsoft.monitor.api.service.SyncMonitorAutoCollectDataService"/>
	</bean>
	
</beans>

定义接口sdk,这个monitor-api将在client端的pom中引用进去
1
2 客户端
引用刚刚看到的monitor-api,拼接url地址,向服务端发送请求

@Transactional(readOnly = false)
    @Override
    public void sync() {
        List<FontalAutoCollectData> fontalAutoCollectDatas = fontalAutoCollectDataService.selectNoSyncDatas();
        if (!CheckEmptyUtil.isEmpty(fontalAutoCollectDatas)){
            String datas = gson.toJson(fontalAutoCollectDatas);
            String merchCode = fontalConfigService.getMerchCode();
            String url = fontalConfigService.getMonitorUrl() + WorkerEnum.syncMonitorAutoCollectData.value();
            String upDown = fontalConfigService.getUpDown();
            //
            HessianProxyFactory factory  = new HessianProxyFactory();
            SyncMonitorAutoCollectDataService syncMonitorAutoCollectDataService;
            String result = null;
            try {
                syncMonitorAutoCollectDataService = (SyncMonitorAutoCollectDataService)factory.create(SyncMonitorAutoCollectDataService.class,url);
                result = syncMonitorAutoCollectDataService.sync(datas, merchCode, upDown);
                if (!CheckEmptyUtil.isEmpty(result)){
                    // 更改上传结果
                    callback(result);
                }
            } catch (MalformedURLException e) {
                logger.error("远程调用monitor 失败,失败原因:{}",e.getMessage());
                e.printStackTrace();
            }
        }
    }
    
@Override
    public String getMonitorUrl() {
        CcsDataDictionary ccsDataDictionary = getMonitorDataDictionary();
        StringBuffer url = new StringBuffer("");
        if (ccsDataDictionary != null){
            url.append("http://").append(ccsDataDictionary.getValueField()).append("/monitor/hessian/");
        }
        return url.toString();
    }

同样客户端pom也需要引入

<dependency>
		    <groupId>com.caucho</groupId>
		    <artifactId>hessian</artifactId>
		    <version>4.0.38</version>
		</dependency>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

warrah

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值