This is an automated email from the ASF dual-hosted git repository.
wangxiaobin pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-python2.git
from 9be4429 Merge pull request #18 from wxbty/bug_version_fix
add d6707ed add java provider demo
new de7f014 Merge pull request #19 from wxbty/java_demo
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
tests/{run_test.py => dubbo_test1.py} | 50 ++++------
.../dubbo-samples-spring-boot-interface/pom.xml | 30 ++++++
.../apache/dubbo/springboot/demo/DemoService.java | 37 +-------
.../dubbo-samples-spring-boot-provider/pom.xml | 70 ++++++++++++++
.../springboot/demo/provider/DemoServiceImpl.java | 41 ++-------
.../demo/provider/ProviderApplication.java | 42 +++------
.../src/main/resources/application.yml | 25 +++++
.../src/main/resources/log4j2.xml | 34 +++++++
tools/java/embedded-zookeeper/pom.xml | 101 +++++++++++++++++++++
.../apache/dubbo/samples/EmbeddedZooKeeper.java | 58 ++++++++++++
.../src/main/resources/log4j2.xml | 29 ++++++
11 files changed, 392 insertions(+), 125 deletions(-)
copy tests/{run_test.py => dubbo_test1.py} (55%)
create mode 100644 tools/java/dubbo-samples-spring-boot-interface/pom.xml
copy dubbo/common/exceptions.py =>
tools/java/dubbo-samples-spring-boot-interface/src/main/java/org/apache/dubbo/springboot/demo/DemoService.java
(59%)
create mode 100644 tools/java/dubbo-samples-spring-boot-provider/pom.xml
copy dubbo/common/exceptions.py =>
tools/java/dubbo-samples-spring-boot-provider/src/main/java/org/apache/dubbo/springboot/demo/provider/DemoServiceImpl.java
(59%)
copy dubbo/common/exceptions.py =>
tools/java/dubbo-samples-spring-boot-provider/src/main/java/org/apache/dubbo/springboot/demo/provider/ProviderApplication.java
(59%)
create mode 100644
tools/java/dubbo-samples-spring-boot-provider/src/main/resources/application.yml
create mode 100644
tools/java/dubbo-samples-spring-boot-provider/src/main/resources/log4j2.xml
create mode 100644 tools/java/embedded-zookeeper/pom.xml
create mode 100644
tools/java/embedded-zookeeper/src/main/java/org/apache/dubbo/samples/EmbeddedZooKeeper.java
create mode 100644 tools/java/embedded-zookeeper/src/main/resources/log4j2.xml