-
Notifications
You must be signed in to change notification settings - Fork 26.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge master branch to 3.x dev branch (#3718)"
This reverts commit 897b80d.
- Loading branch information
Showing
876 changed files
with
13,907 additions
and
29,913 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ The mailing list is the recommended way for discussing almost anything that rela | |
|
||
- [[email protected]](mailto:[email protected]): the develop mailing list, you can ask question here if you have encountered any problem when using or developing Dubbo. | ||
- [[email protected]](mailto:[email protected]): all the commits will be sent to this mailing list. You can subscribe to it if you are interested in Dubbo's development. | ||
- [notifications@dubbo.incubator.apache.org](mailto:notifications[email protected]): all the Github [issue](https://github.com/apache/incubator-dubbo/issues) updates and [pull request](https://github.com/apache/incubator-dubbo/pulls) updates will be sent to this mailing list. | ||
- [notification@dubbo.incubator.apache.org](mailto:notification[email protected]): all the Github [issue](https://github.com/apache/incubator-dubbo/issues) updates and [pull request](https://github.com/apache/incubator-dubbo/pulls) updates will be sent to this mailing list. | ||
|
||
### Reporting issue | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[![Build Status](https://travis-ci.org/apache/incubator-dubbo.svg?branch=master)](https://travis-ci.org/apache/incubator-dubbo) | ||
[![codecov](https://codecov.io/gh/apache/incubator-dubbo/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-dubbo) | ||
![maven](https://img.shields.io/maven-central/v/org.apache.dubbo/dubbo.svg) | ||
![maven](https://img.shields.io/maven-central/v/com.alibaba/dubbo.svg) | ||
![license](https://img.shields.io/github/license/alibaba/dubbo.svg) | ||
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/apache/incubator-dubbo.svg)](http://isitmaintained.com/project/apache/incubator-dubbo "Average time to resolve an issue") | ||
[![Percentage of issues still open](http://isitmaintained.com/badge/open/apache/incubator-dubbo.svg)](http://isitmaintained.com/project/apache/incubator-dubbo "Percentage of issues still open") | ||
|
@@ -29,26 +29,26 @@ We are now collecting dubbo user info in order to help us to improve Dubbo bette | |
|
||
## Getting started | ||
|
||
The following code snippet comes from [Dubbo Samples](https://github.com/apache/incubator-dubbo-samples/tree/master/dubbo-samples-api). You may clone the sample project and step into `dubbo-samples-api` sub directory before read on. | ||
The following code snippet comes from [Dubbo Samples](https://github.com/dubbo/dubbo-samples/tree/master/dubbo-samples-api). You may clone the sample project and step into `dubbo-samples-api` sub directory before read on. | ||
|
||
```bash | ||
# git clone https://github.com/apache/incubator-dubbo-samples.git | ||
# cd incubator-dubbo-samples/dubbo-samples-api | ||
# git clone https://github.com/dubbo/dubbo-samples.git | ||
# cd dubbo-samples/dubbo-samples-api | ||
``` | ||
|
||
There's a [README](https://github.com/apache/incubator-dubbo-samples/tree/master/dubbo-samples-api/README.md) file under `dubbo-samples-api` directory. Read it and try this sample out by following the instructions. | ||
There's a [README](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/README.md) file under `dubbo-samples-api` directory. Read it and try this sample out by following the instructions. | ||
|
||
### Maven dependency | ||
|
||
```xml | ||
<properties> | ||
<dubbo.version>2.7.0</dubbo.version> | ||
<dubbo.version>2.6.5</dubbo.version> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.dubbo</groupId> | ||
<groupId>com.alibaba</groupId> | ||
<artifactId>dubbo-dependencies-bom</artifactId> | ||
<version>${dubbo.version}</version> | ||
<type>pom</type> | ||
|
@@ -59,47 +59,35 @@ There's a [README](https://github.com/apache/incubator-dubbo-samples/tree/master | |
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.dubbo</groupId> | ||
<groupId>com.alibaba</groupId> | ||
<artifactId>dubbo</artifactId> | ||
<version>${dubbo.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.netty</groupId> | ||
<artifactId>netty-all</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.curator</groupId> | ||
<artifactId>curator-framework</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.curator</groupId> | ||
<artifactId>curator-recipes</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.zookeeper</groupId> | ||
<artifactId>zookeeper</artifactId> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
### Define service interfaces | ||
|
||
```java | ||
package org.apache.dubbo.samples.api; | ||
package org.apache.dubbo.demo.api; | ||
|
||
public interface GreetingService { | ||
String sayHello(String name); | ||
} | ||
``` | ||
|
||
*See [api/GreetingService.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/api/GreetingsService.java) on GitHub.* | ||
*See [api/GreetingService.java](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/api/GreetingsService.java) on GitHub.* | ||
|
||
### Implement service interface for the provider | ||
|
||
```java | ||
package org.apache.dubbo.samples.provider; | ||
package org.apache.dubbo.demo.provider; | ||
|
||
import org.apache.dubbo.samples.api.GreetingService; | ||
import org.apache.dubbo.demo.GreetingService; | ||
|
||
public class GreetingServiceImpl implements GreetingService { | ||
public String sayHello(String name) { | ||
|
@@ -108,17 +96,17 @@ public class GreetingServiceImpl implements GreetingService { | |
} | ||
``` | ||
|
||
*See [provider/GreetingServiceImpl.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/GreetingsServiceImpl.java) on GitHub.* | ||
*See [provider/GreetingServiceImpl.java](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/GreetingsServiceImpl.java) on GitHub.* | ||
|
||
### Start service provider | ||
|
||
```java | ||
package org.apache.dubbo.demo.provider; | ||
|
||
import org.apache.dubbo.config.ApplicationConfig; | ||
import org.apache.dubbo.config.RegistryConfig; | ||
import org.apache.dubbo.config.ServiceConfig; | ||
import org.apache.dubbo.samples.api.GreetingService; | ||
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; | ||
|
||
|
@@ -136,7 +124,7 @@ public class Application { | |
} | ||
``` | ||
|
||
*See [provider/Application.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/Application.java) on GitHub.* | ||
*See [provider/Application.java](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/provider/Application.java) on GitHub.* | ||
|
||
### Build and run the provider | ||
|
||
|
@@ -150,10 +138,10 @@ public class Application { | |
```java | ||
package org.apache.dubbo.demo.consumer; | ||
|
||
import org.apache.dubbo.config.ApplicationConfig; | ||
import org.apache.dubbo.config.ReferenceConfig; | ||
import org.apache.dubbo.config.RegistryConfig; | ||
import org.apache.dubbo.samples.api.GreetingService; | ||
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) { | ||
|
@@ -176,7 +164,7 @@ public class Application { | |
|
||
The consumer will print out `Hello world` on the screen. | ||
|
||
*See [consumer/Application.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/consumer/Application.java) on GitHub.* | ||
*See [consumer/Application.java](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/consumer/Application.java) on GitHub.* | ||
|
||
### Next steps | ||
|
||
|
@@ -209,7 +197,7 @@ See [CONTRIBUTING](https://github.com/apache/incubator-dubbo/blob/master/CONTRI | |
* blog post | ||
* translation on documentation | ||
* use cases about how Dubbo is being used in enterprise system. | ||
* Improve the [dubbo-admin/dubbo-monitor](https://github.com/apache/incubator-dubbo-admin). | ||
* Improve the [dubbo-ops/dubbo-monitor](https://github.com/apache/incubator-dubbo-ops). | ||
* Contribute to the projects listed in [ecosystem](https://github.com/dubbo). | ||
* Any form of contribution that is not mentioned above. | ||
* If you would like to contribute, please send an email to [email protected] to let us know! | ||
|
@@ -220,22 +208,21 @@ Please follow the [template](https://github.com/apache/incubator-dubbo/issues/ne | |
|
||
## Reporting a security vulnerability | ||
|
||
Please report security vulnerability to [us](mailto:[email protected]) privately. | ||
Please report security vulnerability to [us]([email protected]) privately. | ||
|
||
## Dubbo ecosystem | ||
## Dubbo eco system | ||
|
||
* [Dubbo Ecosystem Entry](https://github.com/dubbo) - A GitHub group `dubbo` to gather all Dubbo relevant projects not appropriate in [apache](https://github.com/apache) group yet | ||
* [Dubbo Website](https://github.com/apache/incubator-dubbo-website) - Apache Dubbo (incubating) official website | ||
* [Dubbo Samples](https://github.com/apache/incubator-dubbo-samples) - samples for Apache Dubbo (incubating) | ||
* [Dubbo Samples](https://github.com/dubbo/dubbo-samples) - samples for Apache Dubbo (incubating) | ||
* [Dubbo Spring Boot](https://github.com/apache/incubator-dubbo-spring-boot-project) - Spring Boot Project for Dubbo | ||
* [Dubbo Admin](https://github.com/apache/incubator-dubbo-admin) - The reference implementation for Dubbo admin | ||
* [Dubbo OPS](https://github.com/apache/incubator-dubbo-ops) - The reference implementation for Dubbo admin | ||
|
||
#### Language | ||
|
||
* [Node.js](https://github.com/dubbo/dubbo2.js) | ||
* [Python](https://github.com/dubbo/dubbo-client-py) | ||
* [PHP](https://github.com/dubbo/dubbo-php-framework) | ||
* [Go](https://github.com/dubbo/dubbo-go) | ||
|
||
## License | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.