RpcServiceContext上下文

消费者: web 

提供者: buss-service

同一服务器: 192.168.100.228

RpcServiceContext serviceContext = RpcContext.getServiceContext();
//web->buss-serviceLOGGER.warn("getRequest->{}", JsonUtil.toJson(serviceContext.getRequest()));
//getRequest->null
LOGGER.warn("getResponse->{}", JsonUtil.toJson(serviceContext.getResponse()));
//getResponse->null
LOGGER.warn("get->{}", JsonUtil.toJson(serviceContext.get()));
//get->{}
LOGGER.warn("getAttachments->{}", JsonUtil.toJson(serviceContext.getAttachments()));
//getAttachments->{"traceId":"aaef470a3a164379b4f12517f743f5d6","input":"392","remote.application":"web"}
LOGGER.warn("getInterfaceName->{}", JsonUtil.toJson(serviceContext.getInterfaceName()));
//getInterfaceName->null
LOGGER.warn("getLocalAddressString->{}", JsonUtil.toJson(serviceContext.getLocalAddressString()));
//getLocalAddressString->192.168.100.228:21000
LOGGER.warn("getLocalHost->{}", JsonUtil.toJson(serviceContext.getLocalHost()));
//getLocalHost->192.168.100.228
LOGGER.warn("getLocalHostName->{}", JsonUtil.toJson(serviceContext.getLocalHostName()));
//getLocalHostName->192.168.100.228
LOGGER.warn("getLocalPort->{}", JsonUtil.toJson(serviceContext.getLocalPort()));
//getLocalPort->21000
LOGGER.warn("getMethodName->{}", JsonUtil.toJson(serviceContext.getMethodName()));
//getMethodName->test
LOGGER.warn("getObjectAttachments->{}", JsonUtil.toJson(serviceContext.getObjectAttachments()));
//getObjectAttachments->{"traceId":"aaef470a3a164379b4f12517f743f5d6","input":"392","remote.application":"web"}
LOGGER.warn("getRemoteAddressString->{}", JsonUtil.toJson(serviceContext.getRemoteAddressString()));
//getRemoteAddressString->192.168.100.228:36992
LOGGER.warn("getRemoteApplicationName->{}", JsonUtil.toJson(serviceContext.getRemoteApplicationName()));
//getRemoteApplicationName->web
LOGGER.warn("getRemoteHost->{}", JsonUtil.toJson(serviceContext.getRemoteHost()));
//getRemoteHost->192.168.100.228
LOGGER.warn("getRemoteHostName->{}", JsonUtil.toJson(serviceContext.getRemoteHostName()));
//getRemoteHostName->saas-network-01
LOGGER.warn("getRemotePort->{}", JsonUtil.toJson(serviceContext.getRemotePort()));
//getRemotePort->36992
URL url = serviceContext.getUrl();
if(url != null) {LOGGER.warn("getAbsolutePath->{}", JsonUtil.toJson(url.getAbsolutePath()));//getAbsolutePath->/com.myb.wh.buss.service.base.FileServiceLOGGER.warn("getAddress->{}", JsonUtil.toJson(url.getAddress()));//getAddress->192.168.100.228:21000LOGGER.warn("getAllParameters->{}", JsonUtil.toJson(url.getAllParameters()));//getAllParameters->{"release":"3.1.0","dubbo":"2.0.2","interface":"com.myb.wh.buss.service.base.FileService","application":"buss-service","anyhost":"true","pid":"3178994","side":"provider","metadata-type":"remote","methods":"copyFile,deleteFile,getUploadParam,deleteFolder,test,upload,html2Jpg,getFilesByDirectory,ofd2Pdf,jpg2Pdf,batchDeleteFile,html2Pdf,watermarkDIY","logger":"slf4j","deprecated":"false","service-name-mapping":"true","qos.enable":"false","timeout":"10000","bind.port":"21000","register-mode":"instance","generic":"false","bind.ip":"192.168.100.228","payload":"8388608","background":"false","dynamic":"true","service.filter":"dubboExceptionFilter,-exception","dispatcher":"message","qos.accept.foreign.ip":"false","timestamp":"1700834530470"}LOGGER.warn("getParameters->{}", JsonUtil.toJson(url.getParameters()));//getParameters->{"release":"3.1.0","dubbo":"2.0.2","interface":"com.myb.wh.buss.service.base.FileService","application":"buss-service","anyhost":"true","pid":"3178994","side":"provider","metadata-type":"remote","methods":"copyFile,deleteFile,getUploadParam,deleteFolder,test,upload,html2Jpg,getFilesByDirectory,ofd2Pdf,jpg2Pdf,batchDeleteFile,html2Pdf,watermarkDIY","logger":"slf4j","deprecated":"false","service-name-mapping":"true","qos.enable":"false","timeout":"10000","bind.port":"21000","register-mode":"instance","generic":"false","bind.ip":"192.168.100.228","payload":"8388608","background":"false","dynamic":"true","service.filter":"dubboExceptionFilter,-exception","dispatcher":"message","qos.accept.foreign.ip":"false","timestamp":"1700834530470"}LOGGER.warn("getPath->{}", JsonUtil.toJson(url.getPath()));//getPath->com.myb.wh.buss.service.base.FileServiceLOGGER.warn("getServiceInterface->{}", JsonUtil.toJson(url.getServiceInterface()));//getServiceInterface->com.myb.wh.buss.service.base.FileServiceLOGGER.warn("getServiceKey->{}", JsonUtil.toJson(url.getServiceKey()));//getServiceKey->com.myb.wh.buss.service.base.FileServiceLOGGER.warn("getSide->{}", JsonUtil.toJson(url.getSide()));//getSide->providerLOGGER.warn("getIp->{}", JsonUtil.toJson(url.getIp()));//getIp->192.168.100.228LOGGER.warn("getApplication->{}", JsonUtil.toJson(url.getApplication()));//getApplication->buss-serviceLOGGER.warn("getBackupAddress->{}", JsonUtil.toJson(url.getBackupAddress()));//getBackupAddress->192.168.100.228:21000LOGGER.warn("getHost->{}", JsonUtil.toJson(url.getHost()));//getHost->192.168.100.228LOGGER.warn("getPort->{}", JsonUtil.toJson(url.getPort()));//getPort->21000LOGGER.warn("getRemoteApplication->{}", JsonUtil.toJson(url.getRemoteApplication()));//getRemoteApplication->nullLOGGER.warn("getServiceName->{}", JsonUtil.toJson(url.getServiceName()));//getServiceName->com.myb.wh.buss.service.base.FileServiceLOGGER.warn("getSide->{}", JsonUtil.toJson(url.getSide()));//getSide->providerServiceModel serviceModel = url.getServiceModel();if(serviceModel != null) {LOGGER.warn("getServiceKey->{}", JsonUtil.toJson(serviceModel.getServiceKey()));//getServiceKey->com.myb.wh.buss.service.base.FileServiceLOGGER.warn("getServiceName->{}", JsonUtil.toJson(serviceModel.getServiceName()));//getServiceName->com.myb.wh.buss.service.base.FileService}
}URL consumerUrl = serviceContext.getConsumerUrl();
if(consumerUrl != null) { //为nullLOGGER.warn("getAbsolutePath->{}", JsonUtil.toJson(consumerUrl.getAbsolutePath()));LOGGER.warn("getAddress->{}", JsonUtil.toJson(consumerUrl.getAddress()));LOGGER.warn("getAllParameters->{}", JsonUtil.toJson(consumerUrl.getAllParameters()));LOGGER.warn("getApplication->{}", JsonUtil.toJson(consumerUrl.getApplication()));LOGGER.warn("getAttributes->{}", JsonUtil.toJson(consumerUrl.getAttributes()));LOGGER.warn("getBackupAddress->{}", JsonUtil.toJson(consumerUrl.getBackupAddress()));LOGGER.warn("getAuthority->{}", JsonUtil.toJson(consumerUrl.getAuthority()));LOGGER.warn("getCategory->{}", JsonUtil.toJson(consumerUrl.getCategory()));LOGGER.warn("getIp->{}", JsonUtil.toJson(consumerUrl.getIp()));LOGGER.warn("getPath->{}", JsonUtil.toJson(consumerUrl.getPath()));LOGGER.warn("getParametersv", JsonUtil.toJson(consumerUrl.getParameters()));LOGGER.warn("getPort->{}", JsonUtil.toJson(consumerUrl.getPort()));LOGGER.warn("getHost->{}", JsonUtil.toJson(consumerUrl.getHost()));LOGGER.warn("getRemoteApplication->{}", JsonUtil.toJson(consumerUrl.getRemoteApplication()));LOGGER.warn("getServiceInterface->{}", JsonUtil.toJson(consumerUrl.getServiceInterface()));LOGGER.warn("getServiceName->{}", JsonUtil.toJson(consumerUrl.getServiceName()));LOGGER.warn("getSide->{}", JsonUtil.toJson(consumerUrl.getSide()));LOGGER.warn("getServiceKey->{}", JsonUtil.toJson(consumerUrl.getServiceKey()));ServiceModel serviceModel = consumerUrl.getServiceModel();if(serviceModel != null) {LOGGER.warn("getServiceKey->{}", JsonUtil.toJson(serviceModel.getServiceKey()));LOGGER.warn("getServiceName->{}", JsonUtil.toJson(serviceModel.getServiceName()));}}
}

上述为执行内容, 后面在碰到其它场景, 再补充吧, 一般够用了

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/167618.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ElementUI table+dialog实现一个简单的可编辑的表格

table组件如何实现可编辑呢? 我的需求是把table组件那样的表格,实现它点击可以弹出一个框,然后在这个框里面输入你的东西,然后将他回显回去,当然,输入的有可能是时间啥的。 为什么要弹出弹层不在框上直接…

最近iphone手机的交管12123闪退,打不开的解决办法?

苹果手机系统和新版软件不配,终极决绝办法:升级IOS系统就好 可能是手机的内存不足了,因为在使用APP时,需要占用手机的内存,如果手机内存不足以支持软件允许,软件就会闪退。车主可以清理一下手机的内存&…

弹窗msvcp140_1.dll丢失的解决方法,超简单的方法分享

在计算机使用过程中,我们经常会遇到一些错误提示,其中最常见的就是缺少某个文件的错误。最近,我在使用某些软件时,遇到了一个名为“msvcp140_1.dll”的错误提示。这个错误通常出现在运行某些程序时,由于缺少了msvcp140…

项目总结报告(案例模板)

软件项目总结报告模板套用: 项目概要项目工作分析经验与教训改进建议可纳入的项目过程资产 --------进主页获取更多资料-------

2023年【汽车驾驶员(中级)】最新解析及汽车驾驶员(中级)试题及解析

题库来源:安全生产模拟考试一点通公众号小程序 2023年汽车驾驶员(中级)最新解析为正在备考汽车驾驶员(中级)操作证的学员准备的理论考试专题,每个月更新的汽车驾驶员(中级)试题及解…

Doris中的物化视图-查询(十九)

物化视图创建完成后,用户的查询会根据规则自动匹配到最优的物化视图。 比如我们有一张销售记录明细表,并且在这个明细表上创建了三张物化视图。一个存储了不同时间不同销售员的售卖量,一个存储了不同时间不同门店的销售量,以及每…

C#,《小白学程序》第二课:数组,循环与排序

1 什么是数组&#xff1f; 数组 Array 是一组数值&#xff08;数 或 值&#xff09;。 int[] a; int[,] b; int[][] c; Anything[] d; 都是数组。 2 排序 排序就是按大小、名字、拼音或你指定的信息进行比较后排队。 排序是数组最基本的功能需求。 3 文本格式 /// <summa…

《数据结构、算法与应用C++语言描述》-代码实现散列表(线性探查与链式散列)

散列表 完整可编译运行代码&#xff1a;Github:Data-Structures-Algorithms-and-Applications/_22hash/ 定义 字典的另一种表示方法是散列&#xff08;hashing&#xff09;。它用一个散列函数&#xff08;也称哈希函数&#xff09;把字典的数对映射到一个散列表&#xff08…

spring-webflux的一些概念的理解

Spring5的webflux可以支持高吞吐量&#xff0c;使用相同的资源可以处理更加多的请求&#xff0c;它将会成为未来技术的趋势&#xff0c;但是相对于学习其他的框架相比&#xff0c;它的学习曲线很高&#xff0c;综合了很多现有的技术&#xff0c;即使按照教程学习能编写代码&…

requests库的学习(详细篇)

一、request库的安装 requests属于第三方库&#xff0c;Python不内置&#xff0c;因此需要我们手动安装。 pip3 install requests

HTML5新特性

HTML5新特性 前言语义化标签常用语义化标签优点 新增input属性新增type属性值内容其他新增input属性 video&#xff08;视频&#xff09;与audio&#xff08;音频&#xff09;标签 前言 本文主要讲解HTML5中新增了哪些内容。 语义化标签 HTML5新增了语义化标签这个特性&…

第一类曲线积分@对弧长的曲线积分

文章目录 abstract对弧长的曲线积分曲线形构件的质量第一类曲线积分曲线积分存在性利用曲线积分的定义描述曲线形构件质量问题推广曲线积分可加性闭曲线积分 曲线积分性质曲线积分的计算方法证明(部分推导) 小结曲线弧显函数形式方程下的曲线积分公式推广例例例 abstract 在积…

html table样式的设计 表格边框修饰

<!DOCTYPE html> <html> <head> <meta http-equiv"Content-Type" content"text/html; charsetutf-8" /> <title>今日小说排行榜</title> <style> table {border-collapse: collapse;border: 4px double red; /*…

Python之Pygame游戏编程详解

一、介绍 1.1 定义 Pygame是一种流行的Python游戏开发库&#xff0c;它提供了许多功能&#xff0c;使开发人员可以轻松创建2D游戏。它具有良好的跨平台支持&#xff0c;可以在多个操作系统上运行&#xff0c;例如Windows&#xff0c;MacOS和Linux。在本文中&#xff0c;我们将…

单链表的反转?太细了哥们!细到离谱!

单链表的反转&#xff08;面试常出&#xff09;&#xff1a; ​ 单链表的反转&#xff0c;可以通过很多种方法实现。包括迭代法&#xff0c;递归法&#xff0c; 迭代法&#xff1a; 定义三个指针&#xff1a;prev、current和next&#xff0c;它们分别表示前一个节点、当前节点…

NSGA-III求解微电网多目标优化调度(MATLAB)

一、NSGA-III简介 NSGA-III算法由Kalyanmoy Deb和Himanshu Jain于 2014年提出。 参考文献&#xff1a;Deb K , Jain H . An Evolutionary Many-Objective Optimization Algorithm Using Reference Point-Based Nondominated Sorting Approach, Part I: Solving Problems With …

[chroot+seccomp逃逸] THUCTF2019 之 固若金汤

题目分析 附件为一个源码, 其中注释我都写好了, 主要就讲关键的知识点. #define _GNU_SOURCE#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <string.h> #include <errno.h> #include <sched.h> #include <uni…

【C/PTA —— 10.函数1(课外实践)】

C/PTA —— 10.函数1&#xff08;课外实践&#xff09; 一.函数题6-1 符号函数6-2 求排列数6-3 求一个大于10的n位整数w的后n-1位的数&#xff0c;并作为函数值返回。6-4 其右上三角&#xff08;含主对角线&#xff09;元素之和。6-5 字符串比较6-6 使用函数求素数和6-7 使用函…

【电子通识】为什么说做产品不是简单的将不同的技术进行搭积木?

很多人说做产品的硬件工程师&#xff0c;其实就是将专项技术工程师已经调好的模块进行拼接。类似于小孩将积木搭成一个房子的形状&#xff0c;虽然不同人搭的房子风格迥异&#xff0c;但所使用的原材料却都是一样的。 首先我并不同意这种看法&#xff0c;原因是产品工程师是需要…

JVM深入理解

JVM深入理解&#xff08;一&#xff09; JVM是什么 JRE、JDK和JVM 的关系 JVM原理 1、JVM是什么&#xff1f; JVM是Java Virtual Machine&#xff08;Java虚拟机&#xff09;的缩写&#xff0c;由一套字节码指令集、一组寄存器、一个栈、一个垃圾回收堆和一个存储方法域等组…