You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by ky...@apache.org on 2021/11/13 06:47:26 UTC

[dubbo] branch 3.0 updated (838493c -> fb569c4)

This is an automated email from the ASF dual-hosted git repository.

kylixs pushed a change to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo.git.


    from 838493c  Fix netty ssl file leak (#9245)
     add fb569c4  Add dubbo spring boot demo (#9244)

No new revisions were added by this update.

Summary of changes:
 .../dubbo-demo-spring-boot-consumer}/pom.xml       | 98 +++++++++++++--------
 .../demo/consumer/ConsumerApplication.java}        | 33 +++++---
 .../src/main/resources/application.yml             | 29 +++++++
 .../src/main/resources/log4j.properties            |  0
 .../dubbo-demo-spring-boot-interface}/pom.xml      |  8 +-
 .../apache/dubbo/springboot}/demo/DemoService.java |  2 +-
 .../dubbo-demo-spring-boot-provider}/pom.xml       | 99 ++++++++++++++--------
 .../springboot/demo}/provider/DemoServiceImpl.java | 10 ++-
 .../demo/provider/ProviderApplication.java         | 21 +++--
 .../src/main/resources/application.yml             | 29 +++++++
 .../src/main/resources/log4j.properties            |  0
 .../pom.xml                                        | 16 ++--
 dubbo-demo/pom.xml                                 |  1 +
 13 files changed, 239 insertions(+), 107 deletions(-)
 copy dubbo-demo/{dubbo-demo-xml/dubbo-demo-xml-provider => dubbo-demo-spring-boot/dubbo-demo-spring-boot-consumer}/pom.xml (64%)
 copy dubbo-demo/{dubbo-demo-annotation/dubbo-demo-annotation-consumer/src/main/java/org/apache/dubbo/demo/consumer/comp/DemoServiceComponent.java => dubbo-demo-spring-boot/dubbo-demo-spring-boot-consumer/src/main/java/org/apache/dubbo/springboot/demo/consumer/ConsumerApplication.java} (52%)
 create mode 100644 dubbo-demo/dubbo-demo-spring-boot/dubbo-demo-spring-boot-consumer/src/main/resources/application.yml
 copy {dubbo-test/dubbo-test-spring => dubbo-demo/dubbo-demo-spring-boot/dubbo-demo-spring-boot-consumer}/src/main/resources/log4j.properties (100%)
 copy dubbo-demo/{dubbo-demo-native/dubbo-demo-native-interface => dubbo-demo-spring-boot/dubbo-demo-spring-boot-interface}/pom.xml (84%)
 copy dubbo-demo/{dubbo-demo-interface/src/main/java/org/apache/dubbo => dubbo-demo-spring-boot/dubbo-demo-spring-boot-interface/src/main/java/org/apache/dubbo/springboot}/demo/DemoService.java (96%)
 copy dubbo-demo/{dubbo-demo-xml/dubbo-demo-xml-provider => dubbo-demo-spring-boot/dubbo-demo-spring-boot-provider}/pom.xml (64%)
 copy dubbo-demo/{dubbo-demo-native/dubbo-demo-native-provider/src/main/java/org/apache/dubbo/demo/graalvm => dubbo-demo-spring-boot/dubbo-demo-spring-boot-provider/src/main/java/org/apache/dubbo/springboot/demo}/provider/DemoServiceImpl.java (84%)
 copy dubbo-remoting/dubbo-remoting-api/src/test/java/org/apache/dubbo/remoting/PerformanceServerMain.java => dubbo-demo/dubbo-demo-spring-boot/dubbo-demo-spring-boot-provider/src/main/java/org/apache/dubbo/springboot/demo/provider/ProviderApplication.java (60%)
 create mode 100644 dubbo-demo/dubbo-demo-spring-boot/dubbo-demo-spring-boot-provider/src/main/resources/application.yml
 copy {dubbo-test/dubbo-test-spring => dubbo-demo/dubbo-demo-spring-boot/dubbo-demo-spring-boot-provider}/src/main/resources/log4j.properties (100%)
 copy dubbo-demo/{dubbo-demo-native => dubbo-demo-spring-boot}/pom.xml (76%)