美文网首页
Dubbo Proxy Quick Start

Dubbo Proxy Quick Start

作者: 香菜香菜我是折耳根 | 来源:发表于2020-06-01 21:44 被阅读0次
    git clone https://github.com/leopeng1995/dubbo-proxy.git
    cd dubbo-proxy
    mvn package
    java -jar target/*.jar
    
    git clone https://github.com/apache/dubbo-spring-boot-project.git
    cd dubbo-spring-boot-project
    git checkout 2.7.7
    

    请求格式详见文档 https://github.com/apache/dubbo-proxy

    curl "http://192.168.33.1:8000/dubbo-registry-zookeeper-provider-sample/org.apache.dubbo.spring.boot.sample.consumer.DemoService?version=1.0.0" -d '
    {
        "methodName" : "sayHello",
        "paramTypes" : ["java.lang.String"],
        "paramValues": [
            "leo"
        ]
    }'
    

    相关文章

      网友评论

          本文标题:Dubbo Proxy Quick Start

          本文链接:https://www.haomeiwen.com/subject/osdezhtx.html