All Projects → apache → Dubbo Proxy

apache / Dubbo Proxy

Apache dubbo

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Dubbo Proxy

Spring Cloud Dubbo Together
Spring Cloud与Dubbo共存方案
Stars: ✭ 155 (-32.31%)
Mutual labels:  dubbo
Spring Boot Sample
Spring-boot 集成druid数据库连接池,Spring-boot实现druid的动态数据源,Spring-boot实现定时任务schedule,spring-boot集成mybatis
Stars: ✭ 180 (-21.4%)
Mutual labels:  dubbo
Springboot Study
maven多模块化,springboot项目,基础各种微服务、搜索引擎
Stars: ✭ 215 (-6.11%)
Mutual labels:  dubbo
Tesla
Tesla is a gateway service that provides dynamic routing,waf,support spring cloud,gRPC,DUBBO and more.
Stars: ✭ 161 (-29.69%)
Mutual labels:  dubbo
Dubbo Rpc Jsonrpc
The Json rpc module of Apache Dubbo project
Stars: ✭ 177 (-22.71%)
Mutual labels:  dubbo
Springboot Learning
《Spring Boot基础教程》,2.x版本持续连载中!点击下方链接直达教程目录!
Stars: ✭ 13,916 (+5976.86%)
Mutual labels:  dubbo
Meetingfilm
基于微服务架构的在线电影购票平台
Stars: ✭ 149 (-34.93%)
Mutual labels:  dubbo
Spring Dubbo Service
微服务 spring dubbo项目:dubbo rpc;druid数据源连接池;mybatis配置集成,多数据源;jmx监控MBean;定时任务;aop;ftp;测试;Metrics监控;参数验证;跨域处理;shiro权限控制;consul服务注册,发现;redis分布式锁;SPI服务机制;cat监控;netty服务代理;websocket;disconf;mongodb集成;rest;docker;fescar
Stars: ✭ 224 (-2.18%)
Mutual labels:  dubbo
Dubbo Spring Boot Starter
Dubbo Spring Boot Starter
Stars: ✭ 2,102 (+817.9%)
Mutual labels:  dubbo
Dubbo Python
Python Client For Apache Dubbo
Stars: ✭ 212 (-7.42%)
Mutual labels:  dubbo
Chronus
Chronus是360金融技术团队基于阿里开源项目TBSchedule重写的分布式调度。
Stars: ✭ 166 (-27.51%)
Mutual labels:  dubbo
Spring Boot Starter Dubbo
Dubbo Spring Boot 工程
Stars: ✭ 177 (-22.71%)
Mutual labels:  dubbo
Blog
每周一篇,内容精简,不咸不淡,期盼探讨。微信公众号:芋道源码【纯源码分享公众号】
Stars: ✭ 2,327 (+916.16%)
Mutual labels:  dubbo
Priest
dubbo mybatis springboot base soa rest api framework with customer code generator
Stars: ✭ 160 (-30.13%)
Mutual labels:  dubbo
Joice
Java分布式开发平台:Spring, Spring MVC, MyBatis, Dubbo, Redis, Shiro权限管理, Quartz分布式调度, RocketMQ通信, 本地缓存, Redis缓存, 分布式缓存, 分布式事务
Stars: ✭ 219 (-4.37%)
Mutual labels:  dubbo
Dubbo Php Client
Dubbo的php客户端(the php client for dubbo)
Stars: ✭ 149 (-34.93%)
Mutual labels:  dubbo
Doe
自己编写dubbo客户端实现rpc调用,在线调试dubbo接口、dubbo接口可视化测试、自动化测试工具。
Stars: ✭ 183 (-20.09%)
Mutual labels:  dubbo
Springboot Learning Example
spring boot 实践学习案例,是 spring boot 初学者及核心技术巩固的最佳实践。
Stars: ✭ 14,640 (+6293.01%)
Mutual labels:  dubbo
Javainterview
java中高级基础指南
Stars: ✭ 222 (-3.06%)
Mutual labels:  dubbo
Castle Platform
Castle-Platform是一个以高性能、高扩展性为目标的java开发平台。它是spring-mvc, spring-data, spring-security, Querydsl, JPA, Redis, Mongodb, Neo4j, groovy-template, Thymeleaf, ExtJS6, dubbo, thrift的最佳实践。
Stars: ✭ 197 (-13.97%)
Mutual labels:  dubbo

中文版本

Dubbo Proxy

Dubbo Proxy, a gateway of Dubbo, switch from HTTP request to Dubbo protocol,then invoke Dubbo service and return to the result. Later Dubbo Proxy would combine several features, including circuit breaker, current-limiting, api management.

instructions

HTTP request format:

{application Name}/​{Interface name}?version={version}&group={group}

Group and version is the mapping data in Dubbo service.

http POST body:

{
    "methodName" : "sayHello",
    "paramTypes" : ["org.apache.dubbo.demo.model.User"],
    "paramValues": [
        {
            "id": 23,
            "username": "testUser"
        }
    ]
}
  • In the Dubbo 2.7 version and later updates versions, paramTypes is optional data, if not filled in, Dubbo Proxy would get related mapping data from metadata center.
  • You can set registry address and metadata center address in application.yml
proxy.registry.address: zookeeper://127.0.0.1:2181   #registry center address, same as Dubbo service's 
proxy.metadata-report.address: zookeeper://127.0.0.1:2181  #metadata center address, used by paramType search, support for dubbo 2.7 or later
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].