Skip to content

Commit f58a50f

Browse files
authored
1.0.0 (#435)
* Polish #395 * Polish #395 fixed issues * Polish #395 Update documents * Update the root POM's parent * Replace ${project.version} to ${revision} in the "pom.xml" files * Update <projectId> * Remove Netty Project * Polish : #427 * Polish : #427 * Polish : #427 * Polish : #427 : Update Documents * Polish : #427 : Fixed include pattern * Polish : #427 : Correct words
1 parent 33d2ec6 commit f58a50f

File tree

6 files changed

+26
-33
lines changed

6 files changed

+26
-33
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@
22

33
[![Build Status](https://travis-ci.org/apache/incubator-dubbo-spring-boot-project.svg?branch=master)](https://travis-ci.org/apache/incubator-dubbo-spring-boot-project)
44
[![codecov](https://codecov.io/gh/apache/incubator-dubbo-spring-boot-project/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-dubbo-spring-boot-project)
5-
[![Gitter](https://badges.gitter.im/alibaba/dubbo.svg)](https://gitter.im/alibaba/dubbo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
65
![license](https://img.shields.io/github/license/apache/incubator-dubbo-spring-boot-project.svg)
7-
![maven](https://img.shields.io/maven-central/v/com.alibaba.boot/dubbo-spring-boot-starter.svg)
86

97
[Apache Dubbo(incubating)](https://github.com/apache/incubator-dubbo) Spring Boot Project makes it easy to create [Spring Boot](https://github.com/spring-projects/spring-boot/) application using Dubbo as RPC Framework. What's more, it aslo provides
108

119
* [auto-configure features](dubbo-spring-boot-autoconfigure) (e.g., annotation-driven, auto configuration, externalized configuration).
1210
* [production-ready features](dubbo-spring-boot-actuator) (e.g., security, health checks, externalized configuration).
1311

14-
> Apache Dubbo(incubating) is a high-performance, java based [RPC](https://en.wikipedia.org/wiki/Remote_procedure_call) framework open-sourced by Alibaba. As in many RPC systems, dubbo is based around the idea of defining a service, specifying the methods that can be called remotely with their parameters and return types. On the server side, the server implements this interface and runs a dubbo server to handle client calls. On the client side, the client has a stub that provides the same methods as the server.
12+
> Apache Dubbo (incubating) |ˈdʌbəʊ| is a high-performance, light weight, java based RPC framework. Dubbo offers three key functionalities, which include interface based remote call, fault tolerance & load balancing, and automatic service registration & discovery.
1513
1614
## [中文说明](README_CN.md)
1715

@@ -167,7 +165,7 @@ public interface DemoService {
167165
```properties
168166
# Spring boot application
169167
spring.application.name=dubbo-auto-configuration-provider-demo
170-
# Base packages to scan Dubbo Component: @com.alibaba.dubbo.config.annotation.Service
168+
# Base packages to scan Dubbo Component: @org.apache.dubbo.config.annotation.Service
171169
dubbo.scan.base-packages=org.apache.dubbo.spring.boot.demo.provider.service
172170

173171
# Dubbo Application

README_CN.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,17 @@
22

33
[![Build Status](https://travis-ci.org/apache/incubator-dubbo-spring-boot-project.svg?branch=master)](https://travis-ci.org/apache/incubator-dubbo-spring-boot-project)
44
[![codecov](https://codecov.io/gh/apache/incubator-dubbo-spring-boot-project/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-dubbo-spring-boot-project)
5-
[![Gitter](https://badges.gitter.im/alibaba/dubbo.svg)](https://gitter.im/alibaba/dubbo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
65
![license](https://img.shields.io/github/license/apache/incubator-dubbo-spring-boot-project.svg)
7-
![maven](https://img.shields.io/maven-central/v/com.alibaba.boot/dubbo-spring-boot-starter.svg)
86

9-
[Dubbo](https://github.com/alibaba/dubbo) Spring Boot 工程致力于简化 Dubbo RPC 框架在
7+
[Dubbo](https://dubbo.apache.org/zh-cn/index.html) Apache Dubbo™ (incubating)是一款高性能Java RPC框架。
108
[Spring Boot](https://github.com/spring-projects/spring-boot/) 应用场景的开发。同时也整合了 Spring Boot 特性:
119

1210
* [自动装配](dubbo-spring-boot-autoconfigure) (比如: 注解驱动, 自动装配等).
1311
* [Production-Ready](dubbo-spring-boot-actuator) (比如: 安全, 健康检查, 外部化配置等).
1412

13+
> Apache Dubbo (incubating) |ˈdʌbəʊ| 是一款高性能、轻量级的开源Java RPC框架,它提供了三大核心能力:面向接口的远程方法调用,智能容错和负载均衡,以及服务自动注册和发现。
1514
1615

17-
> Dubbo *|ˈdʌbəʊ|* is a high-performance, java based [RPC](https://en.wikipedia.org/wiki/Remote_procedure_call) framework open-sourced by Alibaba. As in many RPC systems, dubbo is based around the idea of defining a service, specifying the methods that can be called remotely with their parameters and return types. On the server side, the server implements this interface and runs a dubbo server to handle client calls. On the client side, the client has a stub that provides the same methods as the server.
18-
1916
## [English README](README_CN.md)
2017

2118

@@ -173,7 +170,7 @@ public interface DemoService {
173170
```properties
174171
# Spring boot application
175172
spring.application.name=dubbo-auto-configuration-provider-demo
176-
# Base packages to scan Dubbo Component: @com.alibaba.dubbo.config.annotation.Service
173+
# Base packages to scan Dubbo Component: @org.apache.dubbo.config.annotation.Service
177174
dubbo.scan.base-packages=org.apache.dubbo.spring.boot.demo.provider.service
178175

179176
# Dubbo Application

dubbo-spring-boot-actuator/README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -122,16 +122,16 @@ externalized configuration [`StatusChecker`'s defaults](#statuschecker-defaults)
122122

123123

124124

125-
`META-INF/dubbo/internal/com.alibaba.dubbo.common.status.StatusChecker` declares Build-in `StatusChecker`s as follow :
125+
`META-INF/dubbo/internal/org.apache.dubbo.common.status.StatusChecker` declares Build-in `StatusChecker`s as follow :
126126

127127
```properties
128-
registry=com.alibaba.dubbo.registry.status.RegistryStatusChecker
129-
spring=com.alibaba.dubbo.config.spring.status.SpringStatusChecker
130-
datasource=com.alibaba.dubbo.config.spring.status.DataSourceStatusChecker
131-
memory=com.alibaba.dubbo.common.status.support.MemoryStatusChecker
132-
load=com.alibaba.dubbo.common.status.support.LoadStatusChecker
133-
server=com.alibaba.dubbo.rpc.protocol.dubbo.status.ServerStatusChecker
134-
threadpool=com.alibaba.dubbo.rpc.protocol.dubbo.status.ThreadPoolStatusChecker
128+
registry=org.apache.dubbo.registry.status.RegistryStatusChecker
129+
spring=org.apache.dubbo.config.spring.status.SpringStatusChecker
130+
datasource=org.apache.dubbo.config.spring.status.DataSourceStatusChecker
131+
memory=org.apache.dubbo.common.status.support.MemoryStatusChecker
132+
load=org.apache.dubbo.common.status.support.LoadStatusChecker
133+
server=org.apache.dubbo.rpc.protocol.dubbo.status.ServerStatusChecker
134+
threadpool=org.apache.dubbo.rpc.protocol.dubbo.status.ThreadPoolStatusChecker
135135
```
136136

137137

@@ -175,11 +175,11 @@ Actuator endpoint `dubbo` supports Actuator Endpoints :
175175
"dubbo": "2.7.0"
176176
},
177177
"urls": {
178-
"dubbo": "https://github.com/alibaba/dubbo",
179-
"google-group": "http://groups.google.com/group/dubbo",
180-
"github": "https://github.com/dubbo/dubbo-spring-boot-project",
181-
"issues": "https://github.com/dubbo/dubbo-spring-boot-project/issues",
182-
"git": "https://github.com/dubbo/dubbo-spring-boot-project.git"
178+
"dubbo": "https://github.com/apache/incubator-dubbo/",
179+
"google-group": "[email protected]",
180+
"github": "https://github.com/apache/incubator-dubbo-spring-boot-project",
181+
"issues": "https://github.com/apache/incubator-dubbo-spring-boot-project/issues",
182+
"git": "https://github.com/apache/incubator-dubbo-spring-boot-project.git"
183183
}
184184
}
185185
```
@@ -222,7 +222,7 @@ The structure of JSON is simple Key-Value format , the key is property name as a
222222
"actives": null,
223223
"cache": null,
224224
"callbacks": null,
225-
"class": "com.alibaba.dubbo.config.spring.ServiceBean",
225+
"class": "org.apache.dubbo.config.spring.ServiceBean",
226226
"cluster": null,
227227
"connections": null,
228228
"delay": null,
@@ -278,7 +278,7 @@ The key is the Bean name of `ServiceBean` , `ServiceBean`'s properties compose v
278278
"actives": null,
279279
"cache": null,
280280
"callbacks": null,
281-
"class": "com.alibaba.dubbo.config.spring.ReferenceBean",
281+
"class": "org.apache.dubbo.config.spring.ReferenceBean",
282282
"client": null,
283283
"cluster": null,
284284
"connections": null,
@@ -315,7 +315,7 @@ The key is the Bean name of `ServiceBean` , `ServiceBean`'s properties compose v
315315
"validation": null,
316316
"version": "1.0.0",
317317
"invoker": {
318-
"class": "com.alibaba.dubbo.common.bytecode.proxy0"
318+
"class": "org.apache.dubbo.common.bytecode.proxy0"
319319
}
320320
}
321321
}
@@ -334,7 +334,7 @@ The key is the string presentation of `@Reference` `Field` or `Method ` , `Refe
334334
"ApplicationConfig": {
335335
"dubbo-consumer-demo": {
336336
"architecture": null,
337-
"class": "com.alibaba.dubbo.config.ApplicationConfig",
337+
"class": "org.apache.dubbo.config.ApplicationConfig",
338338
"compiler": null,
339339
"dumpDirectory": null,
340340
"environment": null,
@@ -364,7 +364,7 @@ The key is the string presentation of `@Reference` `Field` or `Method ` , `Refe
364364
"accesslog": null,
365365
"buffer": null,
366366
"charset": null,
367-
"class": "com.alibaba.dubbo.config.ProtocolConfig",
367+
"class": "org.apache.dubbo.config.ProtocolConfig",
368368
"client": null,
369369
"codec": null,
370370
"contextpath": null,

dubbo-spring-boot-samples/auto-configure-samples/provider-sample/src/main/resources/application.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Spring boot application
22
spring.application.name=dubbo-auto-configuration-provider-demo
3-
# Base packages to scan Dubbo Component: @com.alibaba.dubbo.config.annotation.Service
3+
# Base packages to scan Dubbo Component: @org.apache.dubbo.config.annotation.Service
44
dubbo.scan.base-packages=org.apache.dubbo.spring.boot.demo.provider.service
55
# Dubbo Application
66
## The default value of dubbo.application.name is ${spring.application.name}

dubbo-spring-boot-samples/dubbo-registry-zookeeper-samples/provider-sample/src/main/resources/application.properties

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Spring boot application
22
spring.application.name=dubbo-registry-zookeeper-provider-sample
3-
4-
# Base packages to scan Dubbo Component: @com.alibaba.dubbo.config.annotation.Service
3+
# Base packages to scan Dubbo Component: @org.apache.dubbo.config.annotation.Service
54
dubbo.scan.base-packages=org.apache.dubbo.spring.boot.demo.provider.service
65

76
# Dubbo Application

dubbo-spring-boot-samples/externalized-configuration-samples/provider-sample/src/main/resources/application.properties

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Spring boot application
22
spring.application.name=dubbo-externalized-configuration-provider-sample
3-
4-
# Base packages to scan Dubbo Component: @com.alibaba.dubbo.config.annotation.Service
3+
# Base packages to scan Dubbo Component: @org.apache.dubbo.config.annotation.Service
54
dubbo.scan.base-packages=org.apache.dubbo.spring.boot.demo.provider.service
65

76
# Dubbo Application

0 commit comments

Comments
 (0)