You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by me...@apache.org on 2019/11/14 02:19:59 UTC

[dubbo] branch master updated (055a159 -> 7e5ad3a)

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

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


    from 055a159  Support specify service name when subscribing using Service Discovery mechainism. (#5319)
     add 7e5ad3a  [Bugfix] Resolve the issues about the demos using DubboBootstrap (#5314)

No new revisions were added by this update.

Summary of changes:
 .../configcenter/DynamicConfigurationFactory.java  |   2 +-
 .../apache/dubbo/common/function/Predicates.java   |  74 +++++++
 .../org/apache/dubbo/common/function/Streams.java  |  71 +++++++
 .../apache/dubbo/common/utils/CollectionUtils.java |  21 +-
 .../org/apache/dubbo/common/utils/StringUtils.java |  29 +++
 .../apache/dubbo/config/context/ConfigManager.java |   4 +-
 .../dubbo/common/function/PredicatesTest.java      |  60 ++++++
 .../apache/dubbo/common/function/StreamsTest.java  |  57 ++++++
 .../dubbo/common/utils/CollectionUtilsTest.java    |  26 ++-
 .../dubbo/config/context/ConfigManagerTest.java    | 223 +++++++++++++++++++++
 dubbo-config/dubbo-config-api/pom.xml              |  95 +++++++++
 .../NacosDubboServiceConsumerBootstrap.java        |   2 +-
 .../ZookeeperDubboServiceConsumerBootstrap.java    |   7 +-
 13 files changed, 660 insertions(+), 11 deletions(-)
 create mode 100644 dubbo-common/src/main/java/org/apache/dubbo/common/function/Predicates.java
 create mode 100644 dubbo-common/src/main/java/org/apache/dubbo/common/function/Streams.java
 create mode 100644 dubbo-common/src/test/java/org/apache/dubbo/common/function/PredicatesTest.java
 create mode 100644 dubbo-common/src/test/java/org/apache/dubbo/common/function/StreamsTest.java
 create mode 100644 dubbo-common/src/test/java/org/apache/dubbo/config/context/ConfigManagerTest.java