Skip to content

dubbo 接口调试插件,可以直接调用已注册的接口

License

Notifications You must be signed in to change notification settings

shenluw/intellij-dubbo-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dubbo-plug

996.icu LICENSE

dubbo 接口调试插件

功能:

  • 连接注册中心,获取服务信息

    当前支持 redis, zookeeper, consul

    例如: redis://127.0.0.1:6379?timeout=30000

  • 服务接口调用,并发测试

方法参数填写:

接口需要的参数使用yaml语法进行填充
yaml 一个根对象代表接口需要的一个参数
如果参数为复杂bean,按照yaml语法创建对象即可

例如:

基本类型 Object fun1(int a, String b);

- 123
- paramb

Bean类型 Object fun1(Cat cat1, Cat cat2);

class Cat{
    int age;
    String name;
}
- age: 12
  name: tom
- age: 2
  name: jack

Map 参数同上

数组、Set、List等集合参数

Object fun1(int[] a);

-
  - 12
  - 123

null 参数处理: 单独的 - 表示null

About

dubbo 接口调试插件,可以直接调用已注册的接口

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published