GitHub 地址:https://github.com/JokerChat/dubbo_fastapi
Telnet 命令参考手册:https://dubbo.apache.org/zh/docs/v2.7/user/references/telnet/#status
docker build -t xx:xx .
原理:基于 python telnetlib 库,模拟 Telnet 命令进行 dubbo 接口测试,再封装成 http 接口
备注:部署服务的主机必须可以连接上 dubbo 服务
编号 | 修改日期 | 修改内容 | 修改人 |
---|---|---|---|
1 | 2021-3-9 | 创建文档 | Fang |
## 接口说明
### 1)查询服务名下的所有方法
接口地址
/api/dubbo/list
POST
请求头
序号 | 类型 | 值 | 说明 |
---|---|---|---|
1 | Content-Type | application/json | JSON 格式 |
请求体
序号 | 键值 | 类型 | 说明 |
---|---|---|---|
1 | serviceName | String | 服务名 |
2 | methodName | String | 非必传,查询服务名下指定方法名的传值类型,不传查所有 |
请求体示例
{
"serviceName": "string",
"methodName": "string"
}
返回体
序号 | 键值 | 类型 | 说明 |
---|---|---|---|
1 | responseCode | Int | 返回 code |
2 | responseMsg | String | 返回信息 |
3 | responseData | Array | data 数组 |
4 | - type | int | 0-枚举值,1-无需传参 2- 集合对象,3-自定义对象 |
- paramType | string | 方法传值类型 | |
- methodName | string | 方法名 |
返回值示例(成功)
{
"responseCode": 200,
"responseMsg": "请求成功",
"responseData": [
{
"methodName": "xxxxxx",
"paramType": "java.util.HashMap",
"type": 3
},
{
"methodName": "xxxxxx",
"paramType": [
"java.lang.String",
"java.lang.String",
"java.lang.String",
"java.lang.Integer",
"java.lang.Integer"
],
"type": 0
},
{
"methodName": "xxxxxx",
"paramType": "",
"type": 1
},
{
"methodName": "xxxxxx",
"paramType": "java.util.List",
"type": 2
}
]
}
返回值示例(失败)
{
"responseCode": 400,
"responseMsg": "相应的异常信息"
}
接口地址
/api/invoke
POST
请求头
序号 | 类型 | 值 | 说明 |
---|---|---|---|
1 | Content-Type | application/json | JSON 格式 |
请求体
序号 | 键值 | 类型 | 说明 |
---|---|---|---|
1 | url | string | dubbo 接口地址,IP:端口 |
2 | serviceName | string | 服务名 |
3 | methodName | string | 方法名 |
4 | data | object | 传值 4 种情况,具体看示例 |
请求体示例 1 -- 原生对象或者自定义对象传参(xxDto、jsonObj、java.util.HashMap)
{
"serviceName": "xxxxxx",
"methodName": "xxxxxx",
"data": { //data传入对应的对象数据,一般为json格式的
"productStoreQueryDTOS": [
{
"productNoNumDTOList": [
{
"num": 13,
"productNo": "10000620"
},
{
"num": 13,
"productNo": "10000014"
}
],
"storeCode": "4401S1389"
}
]
}
}
请求体示例 2 -- 枚举值类型传参(java.lang.String、java.lang.Integer)
{
"serviceName": "xxxx",
"methodName": "xxxxx",
"data": { //格式为json,枚举值顺序必须按照dubbo接口定义的传参顺序,注意是否为int还是string
"account":"123456",
"password":"3fd6ebe43dab8b6ce6d033a5da6e6ac5"
}
}
请求体示例 3 -- 方法名无需传参
{
"serviceName": "xxxx",
"methodName": "xxxxxx",
"data":{} //传入空对象
}
请求体示例 4 --集合对象传参(java.util.List)
{
"serviceName": "xxxx",
"methodName": "xxxxxx",
"data":{
"empList": [
"30000445",
"30000444"
]
} //传入对象,里面嵌套数组
}
请求体示例 5 --集合对象传参,后面跟着枚举值(java.util.List 、 java.lang.String 、 java.lang.Integer)
{
"serviceName": "xxxx",
"methodName": "xxxxxx",
"data":{
"userCode": ["12345","686838"],
"startTime": "2021-04-16 13:30:00",
"endTime": "2021-04-16 14:30:00"
}
}
请求体示例 6 --多个自定义对象传参,对象顺序按照 dubbo 接口定义的传参顺序 (xxdtox、xxdto)
{
"serviceName": "xxxx",
"methodName": "xxxxxx",
"data":[
{
"userCode": "7932723",
"startTime": "2021-04-16 13:30:00",
"endTime": "2021-04-16 14:30:00"
},
{
"name": "fang",
"age": "20"
}
]
}
返回值示例(成功)只展示其中一种
{
"responseData": "dubbo接口返回什么,就返回什么"
}
返回值示例(失败)
{
"responseCode": 400,
"responseMsg": "相应的异常信息"
}
### 3)查询服务名的配置信息
接口地址
/api/dubbo/search
POST
请求头
序号 | 类型 | 值 | 说明 |
---|---|---|---|
1 | Content-Type | application/json | JSON 格式 |
请求体
序号 | 键值 | 类型 | 说明 |
---|---|---|---|
1 | serviceName | String | 服务名 |
请求体示例
{
"serviceName": "string"
}
返回体
序号 | 键值 | 类型 | 说明 |
---|---|---|---|
1 | responseCode | Int | 返回 code |
2 | responseMsg | String | 返回信息 |
3 | responseData | Array | data 数组 |
4 | - xx | String | 省略,具体可问开发相关的解释 |
返回值示例(成功)
{
"responseCode": 200,
"responseMsg": "请求成功",
"responseData": {
"url": "xxxx",
"dubbo_service": "xxxx",
"anyhost": "xxxx",
"application": "xxxx",
"bean.name": "xxxxx",
"dubbo": "xxxx",
"generic": "xxxx",
"interface": "xxxx",
"methods": [
"xxxx",
"xxxx",
"xxxx"
],
"owner": "xxxx",
"pid": "xxxx",
"revision": "xxxx",
"side": "xxxx",
"timeout": "xxxx",
"timestamp": "xxxx"
}
}
返回值示例(失败)
{
"responseCode": 400,
"responseMsg": "相应的异常信息"
}