-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing the samples deployed the external Servlet container (#720)
* Polish #718 : [Samples] Introducing the samples deployed the external Servlet container * Polish #718 : [Samples] Introducing the samples deployed the external Servlet container * Polish #718 : [Samples] Introducing the samples deployed the external Servlet container
- Loading branch information
1 parent
d1e5055
commit 611fafe
Showing
47 changed files
with
658 additions
and
56 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 |
---|---|---|
|
@@ -201,7 +201,7 @@ Actuator endpoint `dubbo` supports Actuator Endpoints : | |
"dubbo.protocol.port": "12345", | ||
"dubbo.registry.address": "N/A", | ||
"dubbo.registry.id": "my-registry", | ||
"dubbo.scan.basePackages": "org.apache.dubbo.spring.boot.demo.provider.service" | ||
"dubbo.scan.basePackages": "org.apache.dubbo.spring.boot.sample.provider.service" | ||
} | ||
``` | ||
|
||
|
@@ -217,7 +217,7 @@ The structure of JSON is simple Key-Value format , the key is property name as a | |
|
||
```json | ||
{ | ||
"[email protected].demo.api.DemoService#defaultDemoService": { | ||
"[email protected].sample.api.DemoService#defaultDemoService": { | ||
"accesslog": null, | ||
"actives": null, | ||
"cache": null, | ||
|
@@ -233,9 +233,9 @@ The structure of JSON is simple Key-Value format , the key is property name as a | |
"filter": "", | ||
"generic": "false", | ||
"group": null, | ||
"id": "org.apache.dubbo.spring.boot.demo.api.DemoService", | ||
"interface": "org.apache.dubbo.spring.boot.demo.api.DemoService", | ||
"interfaceClass": "org.apache.dubbo.spring.boot.demo.api.DemoService", | ||
"id": "org.apache.dubbo.spring.boot.sample.api.DemoService", | ||
"interface": "org.apache.dubbo.spring.boot.sample.api.DemoService", | ||
"interfaceClass": "org.apache.dubbo.spring.boot.sample.api.DemoService", | ||
"layer": null, | ||
"listener": "", | ||
"loadbalance": null, | ||
|
@@ -245,7 +245,7 @@ The structure of JSON is simple Key-Value format , the key is property name as a | |
"onconnect": null, | ||
"ondisconnect": null, | ||
"owner": null, | ||
"path": "org.apache.dubbo.spring.boot.demo.api.DemoService", | ||
"path": "org.apache.dubbo.spring.boot.sample.api.DemoService", | ||
"proxy": null, | ||
"retries": null, | ||
"scope": null, | ||
|
@@ -254,7 +254,7 @@ The structure of JSON is simple Key-Value format , the key is property name as a | |
"timeout": null, | ||
"token": null, | ||
"unexported": false, | ||
"uniqueServiceName": "org.apache.dubbo.spring.boot.demo.api.DemoService:1.0.0", | ||
"uniqueServiceName": "org.apache.dubbo.spring.boot.sample.api.DemoService:1.0.0", | ||
"validation": null, | ||
"version": "1.0.0", | ||
"warmup": null, | ||
|
@@ -274,7 +274,7 @@ The key is the Bean name of `ServiceBean` , `ServiceBean`'s properties compose v | |
|
||
```json | ||
{ | ||
"private org.apache.dubbo.spring.boot.demo.api.DemoService org.apache.dubbo.spring.boot.demo.consumer.controller.DemoConsumerController.demoService": { | ||
"private org.apache.dubbo.spring.boot.sample.api.DemoService org.apache.dubbo.spring.boot.sample.consumer.controller.DemoConsumerController.demoService": { | ||
"actives": null, | ||
"cache": null, | ||
"callbacks": null, | ||
|
@@ -285,17 +285,17 @@ The key is the Bean name of `ServiceBean` , `ServiceBean`'s properties compose v | |
"filter": "", | ||
"generic": null, | ||
"group": null, | ||
"id": "org.apache.dubbo.spring.boot.demo.api.DemoService", | ||
"interface": "org.apache.dubbo.spring.boot.demo.api.DemoService", | ||
"interfaceClass": "org.apache.dubbo.spring.boot.demo.api.DemoService", | ||
"id": "org.apache.dubbo.spring.boot.sample.api.DemoService", | ||
"interface": "org.apache.dubbo.spring.boot.sample.api.DemoService", | ||
"interfaceClass": "org.apache.dubbo.spring.boot.sample.api.DemoService", | ||
"layer": null, | ||
"lazy": null, | ||
"listener": "", | ||
"loadbalance": null, | ||
"local": null, | ||
"merger": null, | ||
"mock": null, | ||
"objectType": "org.apache.dubbo.spring.boot.demo.api.DemoService", | ||
"objectType": "org.apache.dubbo.spring.boot.sample.api.DemoService", | ||
"onconnect": null, | ||
"ondisconnect": null, | ||
"owner": null, | ||
|
@@ -310,7 +310,7 @@ The key is the Bean name of `ServiceBean` , `ServiceBean`'s properties compose v | |
"stub": null, | ||
"stubevent": null, | ||
"timeout": null, | ||
"uniqueServiceName": "org.apache.dubbo.spring.boot.demo.api.DemoService:1.0.0", | ||
"uniqueServiceName": "org.apache.dubbo.spring.boot.sample.api.DemoService:1.0.0", | ||
"url": "dubbo://localhost:12345", | ||
"validation": null, | ||
"version": "1.0.0", | ||
|
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
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
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
2 changes: 1 addition & 1 deletion
2
...-samples/auto-configure-samples/provider-sample/src/main/resources/application.properties
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
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
2 changes: 1 addition & 1 deletion
2
...ernalized-configuration-samples/provider-sample/src/main/resources/application.properties
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
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
2 changes: 1 addition & 1 deletion
2
.../registry-samples/nacos-samples/provider-sample/src/main/resources/application.properties
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
Oops, something went wrong.