Go to file
ken.lj 8beeb649f2
Merge pull request #2220, leave jdk standard classes to kryo, use the default registered serializer by kryo.
Fixes #2178, support java8 time types.
2018-08-13 10:48:40 +08:00
.github/ISSUE_TEMPLATE Update FAQ link. 2018-07-18 21:42:42 +08:00
.mvn/wrapper Adding maven wrapper to Dubbo project (#1887) 2018-06-05 14:09:20 +08:00
codestyle Add compatible module and rename groupId to org.apache.dubbo (#1952) 2018-06-19 11:31:09 +08:00
dubbo-all Uniform module directory names (#2214) 2018-08-07 17:40:28 +08:00
dubbo-bom Remove hessian-lite dependency from bom pom 2018-08-09 17:51:28 +08:00
dubbo-bootstrap Add compatible module and rename groupId to org.apache.dubbo (#1952) 2018-06-19 11:31:09 +08:00
dubbo-cluster fix methodName and retries in FailoverClusterInvoker (#2145) 2018-08-09 17:58:10 +08:00
dubbo-common deprecated unused method for Activate #2180 (#2193) 2018-08-07 10:34:51 +08:00
dubbo-compatible add compatible class for config #2169 (#2170) 2018-08-06 10:41:51 +08:00
dubbo-config fix subscription when enable monitor (#2167) 2018-08-02 15:47:00 +08:00
dubbo-container Add compatible module and rename groupId to org.apache.dubbo (#1952) 2018-06-19 11:31:09 +08:00
dubbo-demo [Dubbo-2064] Ipv6 support (#2079) 2018-08-02 18:01:54 +08:00
dubbo-dependencies-bom Merge pull request #2198, Update Jetty to Version 9. 2018-08-09 11:00:39 +08:00
dubbo-distribution Uniform module directory names (#2214) 2018-08-07 17:40:28 +08:00
dubbo-filter Add compatible module and rename groupId to org.apache.dubbo (#1952) 2018-06-19 11:31:09 +08:00
dubbo-metrics Merge pull request #1966, introduces dubbo metrics API module. 2018-07-06 20:26:16 +08:00
dubbo-monitor Merge pull request #2049, upgrade netty4 to the latest release and make it the default option for transporter. 2018-07-09 22:32:24 +08:00
dubbo-plugin [dubbo-1689]: Enhance the test coverage part-10 : dubbo-plugin module (#2001) 2018-06-28 16:18:31 +08:00
dubbo-registry Merge pull request #2198, Update Jetty to Version 9. 2018-08-09 11:00:39 +08:00
dubbo-remoting add timeout config to zookeeper client (#2217) 2018-08-09 11:13:59 +08:00
dubbo-rpc Judge null for key and value in attachment in RpcContextFilter. (#2171) 2018-08-09 11:28:12 +08:00
dubbo-serialization Merge pull request #2220, leave jdk standard classes to kryo, use the default registered serializer by kryo. 2018-08-13 10:48:40 +08:00
dubbo-test Add compatible module and rename groupId to org.apache.dubbo (#1952) 2018-06-19 11:31:09 +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 Merge pull request #2130, enable checkstyle and rat plugin in travis. 2018-07-25 18:31:52 +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 Add FAQ. 2018-07-18 21:37:30 +08:00
LICENSE Add compatible module and rename groupId to org.apache.dubbo (#1952) 2018-06-19 11:31:09 +08:00
NOTICE Merge pull request #1672, improve LICENSE and NOTICE according to ASF policy. 2018-04-26 14:12:33 +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 Annotation activate compatible (#2152) 2018-08-02 14:08:49 +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 Merge pull request #2198, Update Jetty to Version 9. 2018-08-09 11:00:39 +08:00

README.md

Apache Dubbo (incubating) Project

Build Status codecov Gitter license maven

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 :)

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

Maven dependency

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

Defining service interfaces

package org.apache.dubbo.demo;

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

Implement interface in service 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;
    }
}

Starting 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 Provider {

    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();
    }
}

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 Consumer {
    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"));
    }
}

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 security@dubbo.incubator.apache.org (private mailing list).

Ecosystem

  • Dubbo Website - Apache Dubbo (incubating) official website
  • Dubbo Samples - samples for Apache Dubbo (incubating)
  • Dubbo Spring Boot - Spring Boot Project for Dubbo
  • Dubbo OPS - The reference implementation for dubbo ops (dubbo-admin, dubbo-monitor, dubbo-registry-simple, etc.)

Language

License

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