Go to file
ken.lj 6140bc2a65 Fix concurrent problem of zookeeper configcenter, wait to start until cache being fully populated. 2018-11-21 14:40:03 +08:00
.github/ISSUE_TEMPLATE Update dubbo-issue-report-template.md (#2483) 2018-09-11 16:03:08 +08:00
.mvn/wrapper Adding maven wrapper to Dubbo project (#1887) 2018-06-05 14:09:20 +08:00
codestyle add checkstyle rule to check import order (#2745) 2018-11-08 11:44:46 +08:00
dubbo-all refactor governance to configcenter 2018-11-17 12:31:31 +08:00
dubbo-bom refactor governance to configcenter 2018-11-17 12:31:31 +08:00
dubbo-cluster Fix configurator bug 2018-11-21 14:38:40 +08:00
dubbo-common remove unnecessary volatile restrict 2018-11-21 10:25:03 +08:00
dubbo-compatible modify the variable name and support springbean configuration 2018-11-15 18:59:48 +08:00
dubbo-config Fix concurrent problem of zookeeper configcenter, wait to start until cache being fully populated. 2018-11-21 14:40:03 +08:00
dubbo-configcenter Fix concurrent problem of zookeeper configcenter, wait to start until cache being fully populated. 2018-11-21 14:40:03 +08:00
dubbo-container Split the Environment into two parts: Environment in Common and ConfigurationUtils in ConfigCenter 2018-11-20 14:33:35 +08:00
dubbo-demo Split the Environment into two parts: Environment in Common and ConfigurationUtils in ConfigCenter 2018-11-20 14:33:35 +08:00
dubbo-dependencies-bom Merge pull request #2721, Refactor , add switch to simplify registry url and control metadata flow. 2018-11-01 11:07:19 +08:00
dubbo-distribution Merge pull request #2725, problems of graceful shutdown in 2.6.3 and some recommendation. 2018-11-05 10:49:10 +08:00
dubbo-filter Changing URL so tests can run in any order (#2760) 2018-11-08 13:41:10 +08:00
dubbo-metadata-report modify consumer metadatareport: param type from string to map 2018-11-20 10:00:11 +08:00
dubbo-metrics add checkstyle rule to check import order (#2745) 2018-11-08 11:44:46 +08:00
dubbo-monitor code format (#2528) 2018-09-21 08:57:27 +08:00
dubbo-plugin Merge branch 'master' into dev-metadata 2018-11-15 11:33:24 +08:00
dubbo-registry Fix reExport, check url to registry changed before do register. 2018-11-20 20:19:22 +08:00
dubbo-remoting Merge branch 'master' into dev-metadata 2018-11-15 11:33:24 +08:00
dubbo-rpc Split the Environment into two parts: Environment in Common and ConfigurationUtils in ConfigCenter 2018-11-20 14:33:35 +08:00
dubbo-serialization add checkstyle rule to check import order (#2745) 2018-11-08 11:44:46 +08:00
dubbo-test Merge branch 'master' into dev-metadata 2018-11-15 11:33:24 +08:00
.codecov.yml Merge pull request #2047, deprecate dubbo-rpc-thrift. 2018-07-09 16:19:02 +08:00
.gitignore Remove .orig file and update gitigonre. 2018-05-20 14:41:34 +08:00
.travis.yml rm java 9 and 10 on travis (#2559) 2018-09-26 11:40:00 +08:00
CHANGES.md Polish release notes in CHANGES.md 2018-05-15 14:08:19 +08:00
CODE_OF_CONDUCT.md Fix minor issues reported in 2.6.2 RC1 2018-05-22 08:20:10 +08:00
CONTRIBUTING.md Add contact and issue report section. 2018-07-12 18:25:17 +08:00
DISCLAIMER manually merge the work made by pull request #1491 on master branch (#1554) 2018-04-04 22:54:17 -05:00
FAQ.md fix typo error in FAQ (#2684) 2018-10-27 00:13:53 +08:00
LICENSE supplemental change for pull request 1973 (#2329) 2018-08-22 16:12:13 +08:00
NOTICE Enhance NOTICE file. 2018-09-17 10:57:17 +08:00
PULL_REQUEST_TEMPLATE.md Add compatible module and rename groupId to org.apache.dubbo (#1952) 2018-06-19 11:31:09 +08:00
README.md oschina vote (#2786) 2018-11-14 17:29:19 +08:00
mvnw Adding maven wrapper to Dubbo project (#1887) 2018-06-05 14:09:20 +08:00
mvnw.cmd Adding maven wrapper to Dubbo project (#1887) 2018-06-05 14:09:20 +08:00
pom.xml rename module name from governance to configcenter 2018-11-17 12:10:48 +08:00

README.md

Apache Dubbo (incubating) Project

Build Status codecov maven license Average time to resolve an issue Percentage of issues still open Tweet Gitter

Apache Dubbo (incubating) is a high-performance, Java based open source RPC framework. Please visit official site for quick start and documentations, as well as Wiki for news, FAQ, and release notes.

We are now collecting dubbo user info in order to help us to improve Dubbo better, pls. kindly help us by providing yours on issue#1012: Wanted: who's using dubbo, thanks :)

各位 Dubboer开源中国正在举办 2018 年度最受欢迎中国开源软件评比活动,请投 Dubbo 一票。

Architecture

Architecture

Features

  • Transparent interface based RPC
  • Intelligent load balancing
  • Automatic service registration and discovery
  • High extensibility
  • Runtime traffic routing
  • Visualized service governance

Getting started

The following code snippet comes from Dubbo Samples. You may clone the sample project and step into dubbo-samples-api sub directory before read on.

# git clone https://github.com/dubbo/dubbo-samples.git
# cd dubbo-samples/dubbo-samples-api

There's a README file under dubbo-samples-api directory. Read it and try this sample out by following the instructions.

Maven dependency

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>dubbo</artifactId>
    <version>2.6.4</version>
</dependency>

Define service interfaces

package org.apache.dubbo.demo.api;

public interface GreetingService {
    String sayHello(String name);
}

See api/GreetingService.java on GitHub.

Implement service interface for the provider

package org.apache.dubbo.demo.provider;
 
import org.apache.dubbo.demo.GreetingService;
 
public class GreetingServiceImpl implements GreetingService {
    public String sayHello(String name) {
        return "Hello " + name;
    }
}

See provider/GreetingServiceImpl.java on GitHub.

Start service provider

package org.apache.dubbo.demo.provider;

import com.alibaba.dubbo.config.ApplicationConfig;
import com.alibaba.dubbo.config.RegistryConfig;
import com.alibaba.dubbo.config.ServiceConfig;
import org.apache.dubbo.demo.GreetingService;

import java.io.IOException;
 
public class Application {

    public static void main(String[] args) throws IOException {
        ServiceConfig<GreetingService> serviceConfig = new ServiceConfig<GreetingService>();
        serviceConfig.setApplication(new ApplicationConfig("first-dubbo-provider"));
        serviceConfig.setRegistry(new RegistryConfig("multicast://224.5.6.7:1234"));
        serviceConfig.setInterface(GreetingService.class);
        serviceConfig.setRef(new GreetingServiceImpl());
        serviceConfig.export();
        System.in.read();
    }
}

See provider/Application.java on GitHub.

Build and run the provider

# mvn clean package
# mvn -Djava.net.preferIPv4Stack=true -Dexec.mainClass=org.apache.dubbo.demo.provider.Application exec:java

Call remote service in consumer

package org.apache.dubbo.demo.consumer;

import com.alibaba.dubbo.config.ApplicationConfig;
import com.alibaba.dubbo.config.ReferenceConfig;
import com.alibaba.dubbo.config.RegistryConfig;
import org.apache.dubbo.demo.GreetingService;

public class Application {
    public static void main(String[] args) {
        ReferenceConfig<GreetingService> referenceConfig = new ReferenceConfig<GreetingService>();
        referenceConfig.setApplication(new ApplicationConfig("first-dubbo-consumer"));
        referenceConfig.setRegistry(new RegistryConfig("multicast://224.5.6.7:1234"));
        referenceConfig.setInterface(GreetingService.class);
        GreetingService greetingService = referenceConfig.get();
        System.out.println(greetingService.sayHello("world"));
    }
}

Build and run the consumer

# mvn clean package
# mvn -Djava.net.preferIPv4Stack=true -Dexec.mainClass=org.apache.dubbo.demo.consumer.Application exec:java

The consumer will print out Hello world on the screen.

See consumer/Application.java on GitHub.

Next steps

Contact

Contributing

See CONTRIBUTING for details on submitting patches and the contribution workflow.

How can I contribute?

  • Take a look at issues with tag called Good first issue or Help wanted.
  • Join the discussion on mailing list, subscription guide.
  • Answer questions on issues.
  • Fix bugs reported on issues, and send us pull request.
  • Review the existing pull request.
  • Improve the website, typically we need
    • blog post
    • translation on documentation
    • use cases about how Dubbo is being used in enterprise system.
  • Improve the dubbo-ops/dubbo-monitor.
  • Contribute to the projects listed in ecosystem.
  • Any form of contribution that is not mentioned above.
  • If you would like to contribute, please send an email to dev@dubbo.incubator.apache.org to let us know!

Reporting bugs

Please follow the template for reporting any issues.

Reporting a security vulnerability

Please report security vulnerability to us privately.

Dubbo eco system

Language

License

Apache Dubbo is under the Apache 2.0 license. See the LICENSE file for details.